How do I break a line up into two rows?
Ex.
if (cond1 && cond2 && cond3 && cond4 && cond5) {whatever}
How do I make the above line into two line using a line continuation character?
I tried the following, but it does not work:
if (cond1 && cond2 && cond3 _
&& cond4 && cond5) { whatever }
Thank you.
Ex.
if (cond1 && cond2 && cond3 && cond4 && cond5) {whatever}
How do I make the above line into two line using a line continuation character?
I tried the following, but it does not work:
if (cond1 && cond2 && cond3 _
&& cond4 && cond5) { whatever }
Thank you.
Comment