Last active
October 26, 2016 02:04
-
-
Save toptensoftware/931e6d8132e6e39495777acff0920c41 to your computer and use it in GitHub Desktop.
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
| 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