Skip to content

Instantly share code, notes, and snippets.

@gaufung
Created September 13, 2020 08:03
Show Gist options
  • Select an option

  • Save gaufung/4bc4ade64dae5e5528b7de1a1542dacc to your computer and use it in GitHub Desktop.

Select an option

Save gaufung/4bc4ade64dae5e5528b7de1a1542dacc to your computer and use it in GitHub Desktop.
Calculaotr token class
//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