Thanks for the answer.
I tested previously this but it did not work:
if a>b && b>c && c>d
&& d>e && e>f
But now this works:
if a>b && b>c && c>d &&
d>e && e>f
So the && got to be on the end of the first for it to know that the line
is not finished.
On 04/17/2014 06:25 AM, Stefan Karpinski wrote:
If the expression is incomplete, continuation is automatic. There is no
explicit continuation syntax.
On Apr 16, 2014, at 6:01 PM, cnbiz850 <[email protected]> wrote:
Searched but didn't find an answer.
Does Julia allow statement to continue on the next line?