RosettaCodeData/Task/Logical-operations/Clojure/logical-operations.clj

7 lines
152 B
Clojure
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defn logical [a b]
(prn (str "a and b is " (and a b)))
(prn (str "a or b is " (or a b)))
(prn (str "not a is " (not a))))
(logical true false)