Hard to Parse: Designing a Language II
Posted on Mon 15 January 2024 in general • Tagged with programming
After writing the lexer I could turn any math expression into a set of tokens. However, they were still organised as a list and couldn't be used to do any useful work. To go from a list of tokens to a program, I needed to write a parser.
The goal …
Continue reading