7 lines
163 B
Text
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
|