RosettaCodeData/Task/Logical-operations/NewLISP/logical-operations.newlisp
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

3 lines
116 B
Text

(define (logic a b)
(print "a and b is: " (and a b) "\n a or b is: " (or a b))
(print "\n not a is: " (not a)))