Page 1 of 1

Long instruction lines

Posted: Wed Sep 09, 2015 8:02 pm
by kolia
Hi,
I have some lines of code that may be quite long, especially when strings are concatenated. Is there a continuation character that would allow to split a code line over several lines?
Thank you

Re: Long instruction lines

Posted: Wed Sep 09, 2015 8:12 pm
by FourthWorld
You can use "\" as a continuation character.

Re: Long instruction lines

Posted: Wed Sep 09, 2015 8:29 pm
by dunbarx
Hi.

What Richard said. I always keep an empty line above and below these run-on line packages, just for readability.

Craig Newman