static void TestInt32() { MRuby.Run(src, "02", 11, 23, 35); }
static void TestString() { MRuby.Run(src, "00", "aa", "bb", "cc"); }
static void TestBoolean() { MRuby.Run(src, "01", true, false); }
static void Main() { MRuby.Run(@"puts ""Welcom to mruby!"""); }