RosettaCodeData/Task/Copy-a-string/PicoLisp/copy-a-string.l

4 lines
174 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(setq Str1 "abcdef")
(setq Str2 Str1) # Create a reference to that symbol
(setq Str3 (name Str1)) # Create new symbol with name "abcdef"