From: Martin DeMello Date: 2004-10-08T15:14:46+09:00 Subject: Re: Musings on module/class definition domains "trans. (T. Onoma)" wrote: as doing: > > metaclass > def bar > puts "Class Method && Instance Method" > end > instance > def bar > puts "Class Method && Instance Method" > end > > Does that answer the question, or am I misunderstanding? I was just wondering about the utility of a method that got attached both to the class and the instance, since the value of 'self' would be very different in each case. Can you give me an example? martin