At Thu, 8 Nov 2001 15:17:30 +0900,
matz / ruby-lang.org (Yukihiro Matsumoto) wrote:
> |I've got another question though: how do I create a new instance of Set 
> |from C?
> 
>  rb_funcall(set_class, rb_intern("new"), 0);

Or,

rb_class_new_instance(0, 0, set_class);