Created
August 27, 2010 08:15
-
-
Save alexott/553031 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; use of defrecords for https://jukkaz.wordpress.com/2010/08/26/age-discrimination-with-clojure/ | |
(defrecord Person [name age]) | |
(def persons1 | |
[(Person. "Boris" 40) | |
(Person. "Betty" 32) | |
(Person. "Bambi" 17)]) | |
(let [[minors majors] (separate #(<= (:age %) 18) persons1)] | |
(println minors) | |
(println majors)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment