私が欲しいもの
一部のプログラミング言語には、複数行のリテラル文字列を作成する機能があります。次に例を示します。
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 にはこれに似たものがありますか? 複数行をうまく処理できることはわかっていますが、リテラルとして"
も適切に処理したいと考えています。\
ありがとう!