On 1 March 2010 23:23, joshua-choi <[email protected]> wrote: > According to http://clojure.org/reader, "Symbols begin with a non- > numeric character and can contain alphanumeric characters and *, +, !, > -, _, and ? (other characters will be allowed eventually, but not all > macro characters have been determined)." Are there any plans of > allowing any more symbol characters? > > Also, another related question: What alphanumeric characters are > allowed? US-ASCII only?
I don't know if the following's "allowed", but it works: user=> (def π Math/PI) #'user/π user=> π 3.141592653589793 -- Michael Wood <[email protected]> -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
