"""
使用字符串插值和换行符时,我从三重引号字符串中得到了奇怪的结果:
val foo = "bar"
s"""$foo"""
还行吧。
s"""
$foo
"""
这是错误的,我得到以下输出:
"
bar
"
为什么会有引号?
"""
使用字符串插值和换行符时,我从三重引号字符串中得到了奇怪的结果:
val foo = "bar"
s"""$foo"""
还行吧。
s"""
$foo
"""
这是错误的,我得到以下输出:
"
bar
"
为什么会有引号?