Skip to content
abinition edited this page Oct 22, 2014 · 6 revisions

#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

Clone this wiki locally