#include "ruby.h"

int main()
{
    VALUE obj;

    ruby_init();
    obj = rb_eval_string("Object.new");
    rb_p(obj);
    return 0;
}

