Implement lexer skeleton for cclox

This commit is contained in:
2025-06-07 23:38:47 +01:00
parent 84fbf3d138
commit 16b544bb85
7 changed files with 179 additions and 3 deletions

7
cclox_src/scanner.cc Normal file
View File

@@ -0,0 +1,7 @@
#include "scanner.hh"
#include "token.hh"
#include <vector>
std::vector<Token> Scanner::scan_tokens() {
return std::vector<Token>{};
}