From FenixWiki
Definition
INT false
False is a constant integer, equal to the value 0. It is used to state that something is not true.
Example
Program example;
Private
int b = false;
Begin
if (b == false)
say("b was false! so b==0");
else
say("b was not false! so b!=0");
end
Loop
frame;
End
End