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

3 lines
57 B
Text

fcn f(a,b){a and b}
fcn g(a,b){a or b}
fcn h(a){(not a)}