From: Chris Pine Date: 2003-04-09T05:12:18+09:00 Subject: instance_variable_set question Hello, Is this how this is supposed to work? irb(main):001:0> class Foo; end => nil irb(main):002:0> foo = Foo.new => # irb(main):003:0> foo.instance_variable_set :bar, 15 NameError: `bar' is not an instance variable name from (irb):3:in `instance_variable_set' from (irb):3 This seems like it ought to work... Chris