我在Chris Pine的5.4-5.5节学习编程书。
这是在我的Mac上。我在Sublime中的文字是:
puts 'Hello there, and what\'s your name?'
name = gets.chomp
puts 'Your name is ' + name + '? What a lovely name!' puts 'Pleased to meet you, ' + name + '. :)'
然后当我在终端中按ruby calc.rb
时。
我得到的只是:
Hello there, and what\'s your name?
我确实安装了Ruby,因为这本书告诉我要确保在安装之前已经安装了Ruby。将工作。但它仍然没有获得'获得'在我的文本编辑器中。