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

7 lines
163 B
Text

(
:b :a
"xor is: " print! a b xor puts!
"and is: " print! a b and puts!
"or is: " print! a b or puts!
"not is: " print! a not puts!
) :logical-operators