From: ts Date: 2003-12-04T01:23:50+09:00 Subject: Re: Attempted roadmap of future instance variables.... >>>>> "C" == Charles Comstock writes: C> So these @_instace vars are giving us dynamic scoping in one instance right? @_instance are instance variables (they are described in the slide 13) C> class Super C> @_var = 0 this is an instance variable for the class Super C> def get C> @_var this is an instance variable for an *instance* of Super. This mean that this variable is different than the previous one C> end C> end Guy Decoux