Difference between revisions of "False"

From Wiki
Jump to: navigation, search
Line 3: Line 3:
 
The constant <tt>#false</tt> is used to assign or compare a variable or an expression with the boolean ''false'' value.
 
The constant <tt>#false</tt> is used to assign or compare a variable or an expression with the boolean ''false'' value.
  
Internally, <tt>#false</tt> is represented by the integer value 0.
+
Internally, <tt>#false</tt> is represented by the integer value 0.}}
 
==== Example ====
 
==== Example ====
 
<pre>if #false
 
<pre>if #false

Revision as of 12:46, 26 August 2005

A constant that represents boolean false.

The constant #false is used to assign or compare a variable or an expression with the boolean false value.

Internally, #false is represented by the integer value 0.

Example

if #false
  display ok This will never be displayed
if #true
  display ok This will always be displayed

See also

Main Page Documentation