这个字符串怎么来的
"answer
to life
the universe
and everything
is
#{40+2}
"
编译成
" answer to life the universe and everything is " + (40 + 2) + "";
如何强制 coffescript 保持多行(保持字符串插值完整):
"answer \
to life \
the universe \
and everything \
is \
"+(40+2)