We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#else
###Conditional else statement.
Syntax
if ( expression ) statement ; else statement ;
Description
The else verb is always matched by an if verb
See the description for if
Examples
if ( 0 ) puts "TRUE" ; else puts "FALSE" ;
Related Links
if