From: Eric Hodel Date: 2009-07-22T11:03:04+09:00 Subject: Re: class.class = class On Jul 17, 2009, at 05:25, Rubynewbie 72 wrote: > Thanks for the responses... > > I´m starting to see the light at the end of the tunnel... > > Still...I need to do more experimentation with the language because i > still have that "which came first, the chicken or the egg?" feeling ;) Object comes first from (object.c): rb_cObject = boot_defclass("Object", 0); rb_cModule = boot_defclass("Module", rb_cObject); rb_cClass = boot_defclass("Class", rb_cModule); In 1.9, it's BasicObject that comes first.