Difference between revisions of "Nil (type)"

From ComputerCraft Wiki
Jump to: navigation, search
m (Changed capitalization of '''nil''', as it is lowercase.)
m (Added to CAT:LuaTypes.)
Line 2: Line 2:
  
 
Check Wikipedia's page on the [https://en.wikipedia.org/wiki/Null_pointer#Null_pointer null pointer] for more informations.
 
Check Wikipedia's page on the [https://en.wikipedia.org/wiki/Null_pointer#Null_pointer null pointer] for more informations.
 +
 +
For a more in-depth and concise explanation of types, please consolidate with the [http://www.lua.org/manual/5.1/manual.html Lua 5.1 Official Manual].
 +
 +
[[Category:Lua_Types]]

Revision as of 21:17, 28 November 2012

nil is Lua's null. It is different from any other value and represents false in a logical expression. Most of the time, it is used to indicate the lack of a useful value.

Check Wikipedia's page on the null pointer for more informations.

For a more in-depth and concise explanation of types, please consolidate with the Lua 5.1 Official Manual.