RosettaCodeData/Task/Copy-a-string/Clojure/copy-a-string.clj

4 lines
46 B
Clojure

(let [s "hello"
s1 s]
(println s s1))