Unicode variable names: Difference between revisions

Adds Clojure doc on naming
(Adds Clojure solution)
(Adds Clojure doc on naming)
Line 63:
 
=={{header|Clojure}}==
According to the current [http://clojure.org/reader documentation], one should stick to naming with alphanumeric characters and *, +, !, -, _, and ? to avoid possible problems if future versions of Clojure decide to apply special meaning to a character.
 
That being said, it is not currently enforced, so while you probably shouldn't, you technically can.
 
<lang clojure>(let [Δ 1]
(inc Δ))</lang>
{{out}}
<pre>2</pre>
 
 
=={{header|Common Lisp}}==
Anonymous user