From: David Garamond Date: 2003-01-23T22:44:14+09:00 Subject: Re: POLS (with one case: "class variable") Mauricio Fern�ndez wrote: >>i'm mostly concerned with terminology. when people wants "class >>variable", they actually want "instance variable of class" in ruby. > > ^^^^^^^^^^^^^^^^^^^^^^^^^^ > class instance variable? > This is AFAIK the standard terminology: > class A; @@a = 1; end # class variable > class A; def a; @a = 1; end; end # instance variable > class A; @a = 1; end # class instance variable sorry, i was just using matz' terminology [ruby-talk:16538] :-) -- dave