A variable which represents the Boolean logic false, or negative state, the opposite of true.
:-) false;
There is 1 result
<false>
:-) false /= true
There is 1 result
<false>
:-) false == false
There is 1 result
<true>
There are certain situations where a boolean value is required, or an
expression returning a boolean, such as in the test for an
if construct. e.g.
:-) if false then "yes" else "no" endif;
There is 1 result
"no"