Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 145 Bytes

File metadata and controls

15 lines (11 loc) · 145 Bytes

List of functions

(defn even? [x]
  (zero? (mod x 2)))
(defn abs [x]
  (if (pos? x) x (- x)))