私はRubyが初めてです。私のサンプルコードは私にこの例外を与えています:
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 を使用しています。