|
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
|