Statements:

In Enable 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(75)

Which is equivalent to:

X.AddPoint(25, 100)

X.AddPoint(75)