From: "Florian Groß" Date: 2005-04-18T21:33:52+09:00 Subject: Re: [ANN] Article: Seeing Metaclasses Clearly why the lucky stiff wrote: > > > I'm hoping this will help uncover the truth. If anything is unclear, > please report it. Shed a light. Nice article, but I disagree in the point that @@vars are simpler than class instance variables. Class instance variables have odd semantics in the current Ruby which means that they will probably do some detail different than you expect. I've found that sticking to class instance variables (and thus keeping things simple -- why do we need another type of variables again?) helps in making code easier to understand. Perhaps you should display both sides of this in the article.