lambda-calc-1/parse/token/kind.h
2025-01-26 19:31:24 -06:00

34 lines
339 B
C

#ifndef ENUM_TOKEN_KIND
#define ENUM_TOKEN_KIND
enum token_kind
{
tk_error,
tk_EOF,
tk_newline,
tk_literal,
tk_dot,
tk_colonequals,
tk_semicolon,
tk_identifier,
tk_oparen,
tk_cparen,
tk_colon,
tk_lambda,
tk_comma,
};
#endif