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

6 lines
108 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07: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