From c5923d9ec44a34a4f27b7bb6abf447b9fc1bbf1a Mon Sep 17 00:00:00 2001 From: arngo <27396817+arngo@users.noreply.github.com> Date: Wed, 12 Jan 2022 00:14:23 -0500 Subject: create rakefile and add compiled raylib files --- build/temp/anything.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 build/temp/anything.c (limited to 'build/temp/anything.c') diff --git a/build/temp/anything.c b/build/temp/anything.c new file mode 100644 index 0000000..49795f7 --- /dev/null +++ b/build/temp/anything.c @@ -0,0 +1,22 @@ +#include +#include "mruby.h" +#include "mruby/irep.h" +#ifdef __cplusplus +extern const uint8_t anything[]; +#endif +const uint8_t anything[] = { +0x52,0x49,0x54,0x45,0x30,0x32,0x30,0x30,0x00,0x00,0x00,0x6c,0x4d,0x41,0x54,0x5a, +0x30,0x30,0x30,0x30,0x49,0x52,0x45,0x50,0x00,0x00,0x00,0x50,0x30,0x33,0x30,0x30, +0x00,0x00,0x00,0x44,0x00,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x13,0x14,0x01, +0x51,0x02,0x00,0x2f,0x01,0x00,0x01,0x1f,0x01,0x01,0x2f,0x01,0x02,0x00,0x39,0x01, +0x6b,0x00,0x01,0x00,0x00,0x04,0x74,0x65,0x73,0x74,0x00,0x00,0x03,0x00,0x04,0x70, +0x75,0x74,0x73,0x00,0x00,0x02,0x59,0x65,0x00,0x00,0x08,0x63,0x5f,0x6d,0x65,0x74, +0x68,0x6f,0x64,0x00,0x45,0x4e,0x44,0x00,0x00,0x00,0x00,0x08, +}; + +int main() { + mrb_state *mrb = mrb_open(); + mrb_load_irep(mrb, anything); + mrb_close(mrb); + return 0; +} -- cgit v1.2.3