#include "ruby.h"

int main()
{
    ruby_init();
    rb_eval_string("puts 'this is a test program.'");
    return 0;
}

