Re: Ambiguous documentation
- Posted by ghaberek (admin) in March
- 377 views
On Euphoria 4.1 and later, you can use multiple assignment to split out all four values at once:
object tokens, err, lnum lpos {tokens,err,lnum,lpos} = tokenize_string( ... )
-Greg