RosettaCodeData/Task/Boolean-values/Lua/boolean-values.lua
Ingy döt Net 518da4a923 B
2013-04-10 16:19:29 -07:00

6 lines
281 B
Lua

if 0 then print "0" end -- This prints
if "" then print"empty string" end -- This prints
if {} then print"empty table" end -- This prints
if nil then print"this won't print" end
if true then print"true" end
if false then print"false" end -- This does not print