Day 1 – Setting up the Scanner
Today, I created the Lox, Scanner, Token, and TokenType classes. The Scanner’s job is to parse through the code and generate tokens out of it. Tokens are essentially the smallest meaningful units of a programming language, and can include keywords, identifiers, and literals. Ex: this is a token used to refer to the current object…