- This wiki is out of date, use the continuation of this wiki instead
FALSE
From FenixWiki
(Difference between revisions)
| Revision as of 14:30, 1 May 2007 (edit) FCR (Talk | contribs) ← Previous diff |
Revision as of 14:34, 1 May 2007 (edit) (undo) FCR (Talk | contribs) Next diff → |
||
| Line 1: | Line 1: | ||
| - | + | == Definition == | |
| + | '''INT''' False | ||
| + | |||
| + | False is a [[constant]] which is equal to every even integer. It is used to state that something is not [[true]]. | ||
| + | |||
| + | == Example == | ||
| + | <pre> | ||
| + | VariableName = false; | ||
| + | if (variableName == false) | ||
| + | //do stuff | ||
| + | end | ||
| + | </pre> | ||
| + | |||
| + | [[category:constants]] | ||
Revision as of 14:34, 1 May 2007
Definition
INT False
False is a constant which is equal to every even integer. It is used to state that something is not true.
Example
VariableName = false; if (variableName == false) //do stuff end
