- This wiki is out of date, use the continuation of this wiki instead
TRUE
From FenixWiki
(Difference between revisions)
| Revision as of 15:57, 1 May 2007 (edit) Sandman (Talk | contribs) ← Previous diff |
Revision as of 17:26, 2 May 2007 (edit) (undo) Sandman (Talk | contribs) m (True moved to TRUE) Next diff → |
Revision as of 17:26, 2 May 2007
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
