|
| Previous: 2.7.7 Local Symbols | TOC | Index | Back | Next: 2.8 Procedures |
There are two forms of the empty statement (aka null statement) in T3X. The first form is the single semicolon
;
and the second form is the empty compound statement:
DO END
Both null statements have absolutely no effect. Their only purpose is to fill a gap where a statement is required, but nothing is to do. For example, they are useful to indicate explicitly that a condition is not connected to any action:
IE (condition1)
statement1
ELSE IE (condition2)
; ! Do nothing
ELSE IF (condition3)
statement2
| Previous: 2.7.7 Local Symbols | TOC | Index | Back | Next: 2.8 Procedures |