There was an error while loading. Please reload this page.
(defn even? [x] (zero? (mod x 2)))
(defn abs [x] (if (pos? x) x (- x)))