Progress: 54/614 (8.7%)
Studied about parser, scanner, paser generator. The main purpose of scanner is to separate source code into each word, and parser is to make abstract syntax tree from token scanner made. Since developing parser and scanner is difficult because its code tends to be redundant, using parser generator is normal. Many of parser generator are now available. It’s important to select parser generator based on the structure of the language.


