Line continuation?

BlitzMax Forums/BlitzMax Beginners Area/Line continuation?

VP(Posted 2008) [#1]
Is there a VB-alike option to allow me to change this:-


Into this: -



Bremer(Posted 2008) [#2]
I am fairly sure that you use double punctuation to continue a line.

SetColor((palette[TXT_COLOUR] & $FF0000) Shr 16, ..
         (palette[TXT_COLOUR] & $FF00) Shr 8, ..
          palette[TXT_COLOUR] & $FF)



VP(Posted 2008) [#3]
Ah, that works perfectly!

Thank-you :)


Bremer(Posted 2008) [#4]
No problem, just glad I remembered correctly :)