Re: Command Line Continuation
- Posted by Derek Parnell <ddparnell at bigpond.com> Sep 19, 2004
- 463 views
Jim Hendricks wrote: > > > I haven't noticed if EU has command line continuation or if you can wrap > a line onto another line. What are the rules to this? I assume you are not talking about DOS command lines, but about Euphoria program statements. The only things that can't continue over multiple lines are text string literals and commments. For example, below is a valid Euphoria statement... if thisfld > 0 and thatfld = 1 then abc = "a very long string that is longer than " & "a single line of text in the editor" end if -- Derek Parnell Melbourne, Australia