我想要的是
一些编程语言具有创建多行文字字符串的功能,例如:
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
问题:Clojure 有类似的东西吗?我意识到可以"
很好地处理多行,但我希望它也可以\
作为文字正确处理。
谢谢!