Files
gitea-docker/desktop/src-common/advent/zone.clj
2014-09-07 17:25:07 -07:00

8 lines
100 B
Clojure

(ns advent.zone)
(defn box [x1 y1 x2 y2]
(fn [x y]
(and
(< x1 x x2)
(< y1 y y2))))