Build a Compiler from Scratch, Part 1.2: Intermediate Representation and Code Generation
The frontend part of our compiler is complete, and we can parse the source code of a pylite
program into an AST. This leaves us with a final task: translating the program described
by the AST into assembly code. Technically, we could generate assembl...