RosettaCodeData/Task/Logical-operations/Logo/logical-operations.logo

6 lines
108 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
to logic :a :b
(print [a AND b =] and :a :b)
(print [a OR b =] or :a :b)
(print [NOT a =] not :a)
end