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.
X.AddPoint( 25, 100) : X.AddPoint( 0, 75)Is equivalent to:
X.AddPoint( 25, 100) X.AddPoint( 0, 75)
X.AddPoint _ ( 25, 100)