#include "ruby.h"

int main()
{
    ruby_init();
    rb_eval_string("END { puts 'goodbye to romance' }");
    ruby_stop(0);
    return 0;
}

