/
Lua nil type
Lua nil type
One of the most simple types:
local APPnull = nil;
By default if you just declare a variable without assigning it a value, then it will have the value nil.
local APPname
That is just nil.
, multiple selections available,
Related content
Value Types
Value Types
More like this
The core eight types in Lua.
The core eight types in Lua.
More like this
Variables
Variables
More like this
Example code showing the eight basic types in Lua
Example code showing the eight basic types in Lua
More like this
Variable Scope
Variable Scope
More like this
Function scope
Function scope
More like this