Boolean values: Difference between revisions

Content deleted Content added
Added Quackery.
Line 1,978:
>>> bool("False")
True</lang>
 
=={{header|Quackery}}==
{{trans|Forth}}
In conditionals, zero is false, non-zero is true. There are predefined words for the canonical forms, <code>false</code> returns zero and <code>true</code> returns 1.
 
=={{header|R}}==