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) )

Hello! I am starting with Roku (and brightscript). It might be a great idea to do it the same way Python does: https://developer.rhino3d.com/guides/rhinopython/python-statements/#:~:text=You%20cannot%20split%20a%20statement%20into%20multiple%20lines%20in%20Python,is%20continued%20on%20line%202.