I have a long line of code that I want to break up among multiple lines. What do I use and what is the syntax?
For example, adding a bunch of strings,
Put a \ at the end of your line or enclose the statement in parens ( .. ). From IBM:
\
( .. )
b = ((i1 < 20) and (i2 < 30) and (i3 < 40))
or
b = (i1 < 20) and \ (i2 < 30) and \ (i3 < 40)