我目前正在学习 Ruby,并且在我正在使用的教程中遇到了一个奇怪的问题。我正在使用Learn Ruby The Hard Way 中的这个练习,它不断产生语法错误,我不知道为什么。
我尝试使用的代码是
puts <<-'HERE'
There's something going on here.
With the PARAGRAPH thing
We'll be able to type as much as we like.
Even 4 lines if we want, or 5, or 6.
HERE
但是,它总是会产生以下语法错误
ex9.rb:12: syntax error, unexpected tIDENTIFIER, expecting $end
We'll be able to type as much as we like.
^
任何帮助,将不胜感激!我正在使用 TextWrangler,TextWrangler将其解析为块引用,但 Ruby 不是。