20分ではじめるRubyPico を読む「変数の前には@」

irbで変数を使うときは@を付ける」

irb - Interactive Ruby Shell
irb:000> x = 1
=> 1
irb:001> x
undefined method 'x' for main
irb:002> @x = 1
=> 1
irb:003> @x
=> 1
irb:004> 

理由不明