RosettaCodeData/Task/Copy-a-string/Clojure/copy-a-string.clj
2023-07-01 13:44:08 -04:00

3 lines
46 B
Clojure

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