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