可能的原因是什么?
#wordlist.rb
code_words = {
'starmonkeys' => 'Phil and Pete, those prickly chancellors of the New Reich',
'catapult' => 'chucky go-go', 'firebomb' => 'Heat-Assisted Living',
'Nigeria' => "Ny and Jerry's Dry Cleaning (with Donuts)",
'Put the kabosh on' => 'Put the cable box on'
}
irb(main):001:0> require 'wordlist.rb'
=> true
irb(main):002:0> code_words
NameError: undefined local variable or method `code_words' for main:Object
from (irb):2
from :0
答案 0 :(得分:3)
答案 1 :(得分:2)
将其声明为常量或全局变量。 code_words存在于require范围内,并且在加载后无法访问/