RosettaCodeData/Task/Logical-operations/Komodo/logical-operations.komodo
2024-10-16 18:07:41 -07:00

2 lines
96 B
Text

let logicOps(a, b) := (a && b, a || b, !a)
assert(logicOps(true, false) = (false, true, false))