summaryrefslogtreecommitdiffhomepage
path: root/build/temp/anything.c
blob: 49795f764dd3ccf67cf49ba618d0b80625499420 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}