Skip to content

Instantly share code, notes, and snippets.

@yashi
Created April 21, 2012 03:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yashi/2433602 to your computer and use it in GitHub Desktop.
Save yashi/2433602 to your computer and use it in GitHub Desktop.
typedef struct mrb_value {
union {
mrb_float f;
void *p;
mrb_int i;
mrb_sym sym;
} value;
enum mrb_vtype tt:8;
} mrb_value;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment