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

5 lines
124 B
Io

printLogic := method(a,b,
writeln("a and b is ", a and b)
writeln("a or b is ", a or b)
writeln("not a is ", a not)
)