https://github.com/takeru/mruby/tree/examples/examples [step1] C言語の文字列に入れたRubyコードを実行 [step2] .rbファイルを実行 [step3] C言語からRubyのメソッドを呼ぶ [step4] RubyからC言語の関数を呼ぶ までできた、のでpushed. /* [step3] call ruby method from C. */ #include "mruby.h" #include "mruby/proc.h" #include <stdio.h> void _error(const char* s){ printf("ERROR: %s\n", s); exit(1); } void plus(mrb_state *mrb, mrb_value a, mrb_value b) { mrb_value