fuck yeah

This commit is contained in:
bronku 2025-11-21 09:43:40 +01:00
parent 05ba6f6e7f
commit 4d16b6fb08
3 changed files with 14 additions and 15 deletions

View file

@ -1,8 +1,10 @@
#include "../build/parser.hpp"
#include "../src/scanner.hpp"
#include <iostream>
int main()
{
yy::parser p;
return p.parse();
Scanner scanner(&std::cin);
yy::parser parser(&scanner);
return parser.parse();
}