else Statement
Purpose:
Part of a if then endif clause
Syntax:
else
Comments:
The else statement must be the only statement on a line
Example:
if a = b then
p "a=b"
p "a does not equal b"
endif