Statements

In BlueZone Basic there is no statement terminator. More than one statement can be put on a line if they are separated by a colon.

For example:
X.AddPoint( 25, 100) : X.AddPoint(  0,  75)
Is equivalent to:
X.AddPoint( 25, 100)
X.AddPoint(  0,  75)

Line continuation character

The underscore is the line continuation character in BlueZone Basic. There must be a space before and after the line continuation character:
X.AddPoint _ 
( 25, 100)