Skip to content

Instantly share code, notes, and snippets.

@toptensoftware
Last active October 26, 2016 02:04
Show Gist options
  • Select an option

  • Save toptensoftware/931e6d8132e6e39495777acff0920c41 to your computer and use it in GitHub Desktop.

Select an option

Save toptensoftware/931e6d8132e6e39495777acff0920c41 to your computer and use it in GitHub Desktop.
public class Tokenizer
{
public Tokenizer(TextReader reader);
// The current token
public Token Token { get; }
// The value of the number of Token.Number
public double Number { get; }
// Move to the next token
public void NextToken() { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment