- This wiki is out of date, use the continuation of this wiki instead
FALSE
From FenixWiki
(Difference between revisions)
| Revision as of 15:55, 1 May 2007 (edit) Sandman (Talk | contribs) ← Previous diff |
Revision as of 15:58, 1 May 2007 (edit) (undo) Sandman (Talk | contribs) m Next diff → |
||
| Line 2: | Line 2: | ||
| '''INT''' false | '''INT''' false | ||
| - | False is a [[constant]] [[int]]eger, equal to the value 0. It is used to state that something is not [[true]]. | + | False is a [[constant]] [[int]]eger, equal to the value 0. It is used to state that something is false and not [[true]]. |
| == Example == | == Example == | ||
| Line 11: | Line 11: | ||
| Begin | Begin | ||
| - | if (b == false) | + | if(b == false) |
| say("b was false! so b==0"); | say("b was false! so b==0"); | ||
| else | else | ||
Revision as of 15:58, 1 May 2007
Definition
INT false
False is a constant integer, equal to the value 0. It is used to state that something is false and 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
