What I want
Some programming languages have a feature for creating multi-line literal strings, for example:
some stuff ... <<EOF
this is all part of the string
as is this
\ is a literal slash
\n is a literal \ followed by a literal n
the string ends on the next line
EOF
Question: Does Clojure have something similar to this? I realize that "
handles multi-line fine, but I want it to also properly handle \
as a literal.
Thanks!