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

13
Token.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef TOKEN_H
#define TOKEN_H
class Token {
public:
enum Kind {
integer,
real,
eof
};
};
#endif