RosettaCodeData/Task/Boolean-values/Lua/boolean-values.lua

7 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