Expand description
Contains the interpreter function along with the InterpreterConstants enumeration, as used in the Interpreter design example.
Enums
- Represents constants for special characters to be used as interpreted tokens.
Statics
- The 40 most common words in English (in order but that doesn’t really matter here). A token is nothing more than an index into this list.
Functions
- Helper function to convert the token into its corresponding word or punctuation mark.
- This function is a simple interpreter.