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

4 lines
48 B
Plaintext

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