From: ts Date: 2001-10-05T15:13:49+09:00 Subject: [ruby-talk:22119] Re: Ruby namespace jmplementation >>>>> "H" == Henning von Rosen writes: H> Or where do I read the source about this? ruby.h struct RObject { struct RBasic basic; struct st_table *iv_tbl; }; struct RClass { struct RBasic basic; struct st_table *iv_tbl; struct st_table *m_tbl; VALUE super; }; iv_tbl : instance variable m_tbl : methods Guy Decoux