From: Robert Dober Date: 2007-08-17T20:06:50+09:00 Subject: Re: Does singleton variables have any meaning ? On 8/17/07, Robert Dober wrote: > def sing_inst; class << self; self end.instance_variable_get("@a") end I tend to think too complicated :( def sing_inst; class << self; @a end end does the job of course. > 42 > 222 > R.