True
From OpenEUO
Revision as of 19:26, 1 November 2010 by Ximan (Talk | contribs) (Created page with "== Description == true is a lua keyword and valid value of type 'boolean'. While false is the opposite of true, nil is also considered false unless explicitly tested fo...")
Description
true is a lua keyword and valid value of type 'boolean'. While false is the opposite of true, nil is also considered false unless explicitly tested for. All boolean operators return either true or false.
local a,b,c = true,false,nil print(a == b) print(a ~= b) print(a ~= c) print(b ~= c) print(c ~= nil) print(a and not c)
--> 'false' --> 'true' --> 'true' --> 'true' --> 'false' --> 'true'