RosettaCodeData/Task/Logical-operations/Min/logical-operations.min

8 lines
163 B
Text
Raw Permalink Normal View History

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