lambda-calc-1/parse/token/kind.h
2025-01-13 20:36:07 -06:00

34 lines
333 B
C

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