Variables: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 2: Line 2:


Variables must be initialised before being used.
Variables must be initialised before being used.


When any uninitialized variable is detected in any expression, the whole expression results in nil (undefined value).<br>
When any uninitialized variable is detected in any expression, the whole expression results in nil (undefined value).<br>
When undefined value is encountered in field where boolean value is expected, it is converted to false.
When undefined value is encountered in field where boolean value is expected, it is converted to false.


Variable may be unitialised by assigning it nil value.<br>
Variable may be unitialised by assigning it nil value.<br>

Revision as of 00:23, 20 April 2006

Description:

Variables must be initialised before being used.

When any uninitialized variable is detected in any expression, the whole expression results in nil (undefined value).
When undefined value is encountered in field where boolean value is expected, it is converted to false.

Variable may be unitialised by assigning it nil value.
This effectively destroys variable as if it never existed.