Basically, I\'d like to do the following, only using Common Lisp instead of Python:
print(\"Hello world.\\r\\n\")
I can do this, but it only ou
First, in Common Lisp most characters, including return/newline, can be inserted directly into the string. The only character requiring escaping is the string delimiter.
There is also a library cl-interpol which provides a read macro to construct strings with more complex syntax, including special character escapes.