Skip to content

Instantly share code, notes, and snippets.

@rcombs
Created March 22, 2015 05:07
Show Gist options
  • Save rcombs/41e64906cf98c364ed7b to your computer and use it in GitHub Desktop.
Save rcombs/41e64906cf98c364ed7b to your computer and use it in GitHub Desktop.
typedef enum {
INTEGER,
FLOAT,
CHAR,
STRING,
SYMBOL,
LIST,
LPAREN,
RPAREN,
QUOTED,
LAST_NORMAL_TYPE
} type_t;
typedef enum {
BUILTIN_A = LAST_NORMAL_TYPE,
BUILTIN_B
} builtin_t;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment