Live data from Hacker News

Viewing profile — cmcbride

cmcbride

HN member
Joined
Wed, Dec 28, 2011, 3:50 PM UTC
HN karma
13
Public activity
3 items

About cmcbride

No profile information was provided.

Recent public activity

  1. 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…

  2. story
  3. 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---------…