RosettaCodeData/Task/Logical-operations/Io/logical-operations.io
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07: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)
)