【发布时间】:2013-10-23 17:26:35
【问题描述】:
这个字符串怎么来的
"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)
【问题讨论】:
标签: coffeescript