From: Florian Gross Date: 2005-02-17T05:49:50+09:00 Subject: Re: Is this old style Ruby? why the lucky stiff wrote: > Yukihiro Matsumoto wrote: > >> I allow '::' for method calls to denote class methods (with C++ style >> appearance). David doesn't like it. I think _why liked it. > > I like it okay. Not with fervor. > > @var is instance var. obj.meth is instance method. > @@var is class var. obj::meth is class method. > > I guess I thought that the notion of single-character for any instance > syntax and double-character for any class syntax might be simpler. With such cases (I apply the same rule to constant naming, I don't see why I should use SHOUTING_CAPS for non-class constants) I always wonder about others doing an arbitrary distinction between classes and objects -- are classes after all not also objects?