RosettaCodeData/Task/Logical-operations/Io/logical-operations.io

6 lines
124 B
Io
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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)
)