3 lines
122 B
Common Lisp
3 lines
122 B
Common Lisp
(let* ((string "I am a string")
|
|
(string (cl-ppcre:regex-replace " a " string " another ")))
|
|
(write-line string))
|