#pragma once #include "token.hh" #include struct Scanner { Scanner(const std::string &code) : code{code} {}; std::vector scan_tokens(); std::string code; };