Boolean values: Difference between revisions

Content added Content deleted
(Added PicoLisp)
Line 253: Line 253:
Everything else is true. The keyword <tt>TRUE</tt> exists.
Everything else is true. The keyword <tt>TRUE</tt> exists.
[http://www.php.net/manual/en/language.types.boolean.php#language.types.boolean.casting]
[http://www.php.net/manual/en/language.types.boolean.php#language.types.boolean.casting]

=={{header|PicoLisp}}==
Like in all Lisps, the symbol 'NIL' denotes "false", any other value "true".

Some functions return the symbol 'T' for "true" if no other useful (non-NIL)
value is available in the given context. Note that 'NIL' and 'T' are written in
uppercase letters (PicoLisp is case-sensitive).


=={{header|Pike}}==
=={{header|Pike}}==