Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why are some (many) of Clojure's built-in functions defined using def, not defn?

I know that defn is a shortcut for def, but I'm wondering if there's some other reason such as efficiency/readability/style considerations/bootstrapping.

share|improve this question

1 Answer

up vote 13 down vote accepted

Read further down in clojure/core.clj - defn doesn't exist yet at the top, because that file is building the language as it goes. After several hundred lines, defn is written, and functions after that are defined with defn.

share|improve this answer
genius. the incremental building of the language is one of the many things that makes the Clojure source such an interesting read! – mikera Nov 4 '11 at 1:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.