Today’s exercise was computing the score for a throw in Darts. With that I have now just passed the two-thirds mark in the 100 Days of Code challenge. Hooray!

Ok so on to the expression parser. I added tokens for strings and the keyword let. I started making syntax tree tokens for numbers, strings, and booleans. I need to go bottom up to try and make some of the other more complex nodes like expression or statement. I also started on a Symbol table. Not much to show, sorry.