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.