Skip to content

Instantly share code, notes, and snippets.

@gaufung
Created September 13, 2020 08:02
Show Gist options
  • Save gaufung/af37d63e011e9933e5587d90e27873b9 to your computer and use it in GitHub Desktop.
Save gaufung/af37d63e011e9933e5587d90e27873b9 to your computer and use it in GitHub Desktop.
Calculator Token
//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