RosettaCodeData/Task/Copy-a-string/LFE/copy-a-string-2.lfe

9 lines
66 B
Plaintext

> (set a '"data")
"data"
> a
"data"
> (set b a)
"data"
> b
"data"