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

4 lines
56 B
Lua
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
function logic(a,b)
return a and b, a or b, not a
end