summaryrefslogtreecommitdiffhomepage
path: root/build/template/game.c
diff options
context:
space:
mode:
Diffstat (limited to 'build/template/game.c')
-rw-r--r--build/template/game.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/build/template/game.c b/build/template/game.c
deleted file mode 100644
index 619b961..0000000
--- a/build/template/game.c
+++ /dev/null
@@ -1,17 +0,0 @@
-// emcc -s WASM=1 -Os -I ../include/ hello_ruby.c web/lib/libmruby.a -o hello_ruby.js --closure 1
-
-#include <mruby.h>
-#include <mruby/compile.h>
-
- int
-main(void)
-{
- mrb_state *mrb = mrb_open();
- if (!mrb) { /* handle error */ }
- // mrb_load_string(mrb, str) to load from NULL terminated strings
- // mrb_load_nstring(mrb, str, len) for strings without null terminator or with known length
- mrb_load_string(mrb, "puts 'hello world'");
- mrb_load_string(mrb, "Ye.c_method");
- mrb_close(mrb);
- return 0;
-}