RosettaCodeData/Task/String-prepend/NewLISP/string-prepend.l

4 lines
48 B
Plaintext

(setq str "bar")
(push "foo" str)
(println str)