Logical Line Extension

Liberty BASIC supports a technique called logical-line-extension, which allows one line of code to be split over several lines of text in the editor. For example:

open "user32" for dll as #u
calldll #u, "GetWindowRect", hMain as long, Rect as struct, result as long
close #u

A line can get long and difficult to read! Consider the following equivalent.

open "user32" for dll as #u
callDLL #u, "GetWindowRect",_
    hMain as long,_
    Rect as struct,_
    result as long
close #u

When the line is broken up with the _ character, the code is more readable.