RosettaCodeData/Task/Logical-operations/XLISP/logical-operations.l
2023-07-01 13:44:08 -04:00

4 lines
135 B
Common Lisp

(defun logical-functions (a b)
(print `(a and b = ,(and a b)))
(print `(a or b = ,(or a b)))
(print `(not a = ,(not a))) )