Created
September 13, 2020 08:03
-
-
Save gaufung/4bc4ade64dae5e5528b7de1a1542dacc to your computer and use it in GitHub Desktop.
Calculaotr token class
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 class Token | |
| { | |
| public TokenType Type { get; set; } | |
| public string Literal { get; set; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment