dcrandall
12 years agoVisitor
Brightscript line continuation marker/method?
I've caught myself sometimes needing to go extremely long in my lines, and I was wondering if there was a line-continuation marker I was missing.
IE:
if( (super = true) AND (cali = true) AND (fragil = true) AND (istic = true) AND (expi = true) AND (alidocious = true) )
Could be
if( (super = true) AND
(cali = true) AND
(fragil = true) AND
(istic = true) AND
(expi = true) AND
(alidocious = true) )
I think VisualBasic uses the '_' character, making this:
if( (super = true) AND _
(cali = true) AND _
(fragil = true) AND _
(istic = true) AND _
(expi = true) AND _
(alidocious = true) )
IE:
if( (super = true) AND (cali = true) AND (fragil = true) AND (istic = true) AND (expi = true) AND (alidocious = true) )
Could be
if( (super = true) AND
(cali = true) AND
(fragil = true) AND
(istic = true) AND
(expi = true) AND
(alidocious = true) )
I think VisualBasic uses the '_' character, making this:
if( (super = true) AND _
(cali = true) AND _
(fragil = true) AND _
(istic = true) AND _
(expi = true) AND _
(alidocious = true) )