On Mon, Dec 21, 1998 at 12:41:43AM +0900, Yukihiro Matsumoto wrote: [...] > Example: > > class ABC > def initialize( _v ) > @v = _v > end > attr_accesser :v > end Hmm. I've used attr_accessor (with an "o" instead of an "e") so far, especially as attr_accesser gives me a runtime error. Also, I prefer to use attr instead of attr_reader. Anything wrong with that? [...] Reimer Behrends