RosettaCodeData/Task/String-concatenation/Common-Lisp/string-concatenation-1.lisp

6 lines
149 B
Common Lisp
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(let ((s "hello"))
(format t "~a there!~%" s)
(let* ((s2 " there!")
(s (concatenate 'string s s2)))
(format t "~a~%" s)))