Add a couple more characters to lex

This commit is contained in:
2019-05-19 12:49:26 +02:00
parent 600315d401
commit 8285811fb7
3 changed files with 83 additions and 5 deletions

View File

@@ -5,7 +5,15 @@ enum TokenKind{
EndOfFile,
WhiteSpace,
PlusToken,
MinusToken,
SlashToken,
StarToken,
AssignmentToken,
EqualityToken,
Integer,
Float,
};