我是红宝石的新手。我的示例代码给了我这个例外:
C:/Users/abc/RubymineProjects/Sample/hello.rb:5:in `<class:Hello>': undefined method `first_method' for Hello:Class (NoMethodError)
from C:/Users/abc/RubymineProjects/Sample/hello.rb:1:in `<top (required)>'
from -e:1:in `load'
from -e:1:in `<main>'
进程以退出代码 1 结束
我的代码是:
class Hello
def first_method
puts "Hello World"
end
first_method()
end
我正在使用 RubyMine 4.5.4。