initial code

This commit is contained in:
Karma Riuk
2025-06-28 17:59:08 +02:00
parent 8acce0f6a6
commit 9a13de97e1
3 changed files with 79 additions and 0 deletions

9
src/main.cpp Normal file
View File

@ -0,0 +1,9 @@
#include "token/type.hpp"
#include <iostream>
int main() {
auto eof = TokenType::ILLEGAL;
std::cout << eof << std::endl;
return 0;
}