Variables: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{merge| | {{merge|Undefined_Variable_Types}} | ||
'''Description:''' | '''Description:''' |
Revision as of 04:55, 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 uninitialised by assigning it nil value.
This effectively destroys variable as if it never existed.