ELSE
General Form:
: ELSE statement
Where:
statement = any KCML statement
The ELSE statement is used immediately after an IF ... THEN, ON ... GOSUB, ON ... SELECT statement, to conditionally execute a successive statement if the condition from the previous statement is false. If the previous condition was true then execution continues with the statement after the ELSE statement, assuming that the previous condition did not cause a branch. The ELSE statement can be followed by a DO group to execute a group of statements if the condition in the previous IF ... THEN statement was false.
See also:
IF ... THEN, DO group, ON ... GOSUB, ON ... SELECT