This whole discussion makes me think you're trying to teach Clojure in a
Scheme-like way, which maybe isn't the best approach.

In Clojure, it is rare to need quoted lists and symbols.
Instead of 'hello, you would use :hello.
Instead of '(1 2 3), you would use [1 2 3].

So the whole notion of quoting can be avoided with beginners, and doesn't
typically need to be introduced until you get to macros.  This is good
because quoting can be a surprisingly subtle and tricky topic.  Much easier
to work with and teach self-evaulating expressions.  If you really need a
list, I'd recommend teaching it as (list 1 2 3), and only much later
teaching quote as a sort of shortcut.

-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to