Home > Available Help Files > PC-DMIS BASIC Language > Cypress Enable Scripting Language Elements > Statements
Current Help File: PC-DMIS Basic (View Core Help)
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)