organization.

This commit is contained in:
=
2014-09-07 17:25:07 -07:00
parent d7a2508ada
commit 91d03855d5
5 changed files with 261 additions and 225 deletions

View File

@@ -0,0 +1,7 @@
(ns advent.zone)
(defn box [x1 y1 x2 y2]
(fn [x y]
(and
(< x1 x x2)
(< y1 y y2))))