Navigation: Glossary > S
semicolon (;)
In command syntax, the semicolon is used as a command separator.
Example
The follow commands can be written both ways, the first without semicolons.
IF vAnswer = 'YES' THEN
GOTO vEnd
ENDIF
IF vAnswer = 'YES' THEN ; GOTO vEnd ; ENDIF