Or you may use it for long string concatenations, here some out of GuiTools:
dummy$ = MessageBox$("Error16px.png", appExeName$,_
"Error handler reports too many|" +_
"recursive Errors !!|~" +_
"Program will cleanup and terminate|" +_
"via internal emergency exit.",_
"{IMG Error16px.png 39}Ok, got it...")
Frame1$ = FrameC$("INIT",_
NewTag$("LEFT", "25") +_
NewTag$("TOP", "160") +_
NewTag$("WIDTH", "525") +_
NewTag$("HEIGHT", "250") +_
NewTag$("FORM", "solid") +_
NewTag$("TEXT", "Frame 1 (raised)") +_
NewTag$("TEXTPLACE", "topleft"))
The only backdraw from using an underscore as line continuation is, that these constructs are no longer autoformatted by the IDE, you have to indent everything by yourself and also add all the space separators between variables, operators etc..
However, at least the compiler will not complain about misformatted lines as long as there are no other errors present.