Viewing profile — cmcbride
cmcbride
HN member- Joined
- Wed, Dec 28, 2011, 3:50 PM UTC
- HN karma
- 13
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About cmcbride
No profile information was provided.
Recent public activity
-
comment
Comment #4671830
or we could remove the tax break for employers that provide health insurance. If health insurance was tied to the individual it would stay with them in between jobs. You could also…
- story
-
comment
Comment #3454462
The function that creates the lexical closure can still have referential transparency. For example: (defn make-adder [x y] (fn [z] (+ x y z))) ((make-adder 1 2) 3) -----VS---------…