RosettaCodeData/Task/Logical-operations/Lua/logical-operations.lua
2023-07-01 13:44:08 -04:00

3 lines
56 B
Lua

function logic(a,b)
return a and b, a or b, not a
end