Hi,

On Wed, May 05, 2010 at 08:24:39AM -0700, Chas Emerick wrote:

> variety of birds with one stone, and maybe slightly simplify the
> mental model that one needs to have in place to understand namespaces.

The model is already quite easy, no? Everything is just a sequence
of statements read by Clojure. A ns form does not create a namespace
but declares one. It is only created, if it doesn't exist already.
And from then on this namespace is modified by further statements.

The question with the new style is: to which filter does f refer to?

(ns some.name.space)

(defn f [pred x] (filter pred x)) ; core filter?

(defn filter [pred x] ...)

Sincerely
Meikel

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to