RosettaCodeData/Task/Boolean-values/Lua/boolean-values.lua
2023-07-01 13:44:08 -04: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