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