From: Trans Date: 2006-10-28T01:45:25+09:00 Subject: Re: classless methods Dave Rose wrote: > what class does a classless independent method belong too? > another words if i just make an new irb session and type: > > def widget(tidbit) > tidbit > end > > a=1.0 > puts widget(a) > > b='string' > > puts widget(b) > > what class will the widget method belong too? Not Kernel, it becomes a private method of Object class. T.