#ifndef FORSPLL_PARSER_HPP #define FORSPLL_PARSER_HPP #include #include #include enum class Token { none, ThunkOpen, ThunkClose, Quote, PopVar, PushVar, Var, Number }; extern std::string name; std::pair nextToken(std::string_view sv); void printToken(Token tok); #endif // FORSPLL_PARSER_HPP