On Wed, Mar 21, 2018 at 7:48 AM, Nick Mudge <mud...@gmail.com> wrote:

> I see what you mean.  All keywords are namespaced, so there really is no
> such thing as a no-namespaced keyword. Thank you.
>

You can have keywords without a namespace:

user> (clojure-version)
1.9.0
user> (keyword "bar" "foo")
:bar/foo
user> (namespace (keyword "bar" "foo"))
bar
user> (keyword "foo")
:foo
user> (namespace (keyword "foo"))
nil

-- 
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