From: ts Date: 2006-05-11T01:03:04+09:00 Subject: Re: class << my_instance and class variables >>>>> "R" == Raphael Bauduin writes: R> method. The class variable @@v is also added to the same object R> specific class. Are you sure ? moulon% ruby -e 'class << Object.new; @@a = 12 end; p @@a' -e:1: warning: class variable access from toplevel singleton method 12 moulon% Guy Decoux