RosettaCodeData/Task/Short-circuit-evaluation/Lua/short-circuit-evaluation.lua
2023-07-01 13:44:08 -04:00

17 lines
257 B
Lua

function a(i)
print "Function a(i) called."
return i
end
function b(i)
print "Function b(i) called."
return i
end
i = true
x = a(i) and b(i); print ""
y = a(i) or b(i); print ""
i = false
x = a(i) and b(i); print ""
y = a(i) or b(i)