diff options
Diffstat (limited to 'build/temp/anything.c')
| -rw-r--r-- | build/temp/anything.c | 22 |
1 files changed, 22 insertions, 0 deletions
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 <stdint.h> +#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; +} |
