From: Joe Date: 2006-02-27T05:34:43+09:00 Subject: Using attr_writer? I'm confused about attr_writer. I thought it worked like this: class Foo attr_writer :bar def do_stuff puts @bar end end foo = Foo.new foo.bar = 'baz' foo.do_stuff # gives nil error Can somebody enlighten me? :) Thanks, Joe -- Posted via http://www.ruby-forum.com/.