RosettaCodeData/Task/Logical-operations/Lua/logical-operations.lua

4 lines
56 B
Lua
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
function logic(a,b)
return a and b, a or b, not a
end