Empty lexer

This commit is contained in:
Rafał Grodziński
2025-05-27 13:23:04 +09:00
commit 45387b7638
6 changed files with 38 additions and 0 deletions

6
Lexer.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include "Lexer.h"
#include "Token.h"
std::vector<Token> tokens() {
}