我是新來的Ruby,所以我恐怕這是一個愚蠢的問題,但我只是想不通,爲什麼我得到這個錯誤:紅寶石神祕語法錯誤
init.rb: C:/Users/dmpk/Desktop/warranty-pro/lib/guide.rb:2: syntax error, unexpected end-of-input, expecting keyword_end (SyntaxError)
這裏是一個樣本有問題的文件
require 'claim'
class Guide
class Config
@@actions = ['add', 'list', 'find', 'quit']
def self.actions
@@actions
end
end
在上面的例子中第一行是第1行,最後一行是10行。 所以說,它期待在第2行「結束」了,我不明白爲什麼。
你錯過了'結束'。 –