Explore >> Select a destination


You are here

abhinavsarkar.net
| | craftinginterpreters.com
3.3 parsecs away

Travel
| | [AI summary] The text discusses the implementation of a compiler for a simple programming language, focusing on parsing and bytecode generation. It covers topics such as recursive descent parsing, Pratt parsing, and the use of a parser table to handle operator precedence. The text also includes code snippets for the parser and compiler functions, as well as instructions for debugging and testing the compiler. The author emphasizes the importance of error handling and the use of a debug flag to enable the printing of generated bytecode.
| | www.diegofreijo.com
3.7 parsecs away

Travel
| | I made a Rust implementation of the Lox programming language introduced by the Crafting Interpreters book.
| | stefan-marr.de
3.1 parsecs away

Travel
| | A comparative study of abstract-syntax-tree and bytecode interpreters on top of meta-compilation systems.
| | wimvanderbauwhede.codeberg.page
25.5 parsecs away

Travel
| This is a follow-on of my article on algebraic data types, with list-based parser combinators as a practical application.