#pragma once #include #include "token.hpp" #include #include namespace hex::lang { class Lexer { public: Lexer(); std::pair> lex(const std::string& code); }; }