class Player
def getsaves
print "Saves: "
saves = gets
end
def initialize(saves, era, holds, strikeouts, whip)
end
end
私は上記のコードを持っています...私が書いたとしましょう。
j = Player.new(30, 30, 30, 30, 30)
getsaves
When I am outside the class scope, how do I do I do?で saves 変数にアクセスしたいのですが、どうすればいいですか?:
puts saves variable that is inside getsaves