Parth Malwankar a écrit :
> Hello,
>
> As per the docs for keywords ( http://clojure.org/reader ), keywords
> cannot contain '.'.
>
> "They cannot contain '.' or name classes."
>
>
http://groups.google.com/group/clojure/msg/eac27b0bd6f823f7
Rich Hickey: "As far as '.', that restriction has bee
Hello,
As per the docs for keywords ( http://clojure.org/reader ), keywords
cannot contain '.'.
"They cannot contain '.' or name classes."
However, the following works on the repl:
user=> :..
:..
user=> (keyword? :..)
true
Are '.'s allowed and the docs need updating? Or should
we see an excep