Change main to read a single token and print

This commit is contained in:
2025-09-30 17:41:53 +03:00
committed by Emin Arslan
parent 5eadf0b643
commit 08136c6492

View File

@@ -5,6 +5,10 @@
using namespace std;
int main() {
cout << "hi " << endl;
string s;
cin >> s;
Lexer l(s);
cout << l.next() << endl;
return 0;
}