We’re continuing our webinar series on building your own programming language in C++!
And stay tuned for the next webinar.
In the previous webinar, we created a parser that analyzes code and outputs parsing results to the console. Now it’s time for the next important step — building an AST (Abstract Syntax Tree). An AST is a structured representation of code that makes further analysis, transformations, and execution possible. In this webinar, we’ll explain how ASTs work, show how to build them step by step, and create a printer that makes parsed code much easier to visualize and inspect. This session will lay the groundwork for everything that comes next in our language implementation journey — semantic analysis, evaluation, and beyond.
Have fun watching this video and coding :)
0