Created
September 13, 2020 08:02
-
-
Save gaufung/af37d63e011e9933e5587d90e27873b9 to your computer and use it in GitHub Desktop.
Calculator Token
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Token.cs | |
public enum TokenType | |
{ | |
INT, | |
PLUS, | |
MINUS, | |
MULTIPLY, | |
DIVIDE, | |
POWER, | |
LPAREN, | |
RPAREN, | |
EOF, | |
ILLEGAL, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment