/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

craftinginterpreters.com
| | www.craftinginterpreters.com
1.3 parsecs away

Travel
| | [AI summary] This text provides an in-depth overview of programming language concepts, focusing on compilers, interpreters, and related tools. It explains the differences between compilers and interpreters, discusses various implementation techniques like transpilation and just-in-time (JIT) compilation, and touches on the broader landscape of language processing. The text also serves as an introduction to the Lox language and encourages exploration of open-source language implementations.
| | www.diegofreijo.com
1.7 parsecs away

Travel
| | I made a Rust implementation of the Lox programming language introduced by the Crafting Interpreters book.
| | javascript.crockford.com
1.0 parsecs away

Travel
| | [AI summary] The provided text outlines the implementation of a parser and interpreter for a custom programming language, using a Pratt parsing approach. It details the structure of tokens, the handling of expressions, statements, and control flow, as well as the implementation of functions, objects, and arrays. The text also discusses potential extensions and enhancements to the language.
| | healeycodes.com
18.1 parsecs away

Travel
| Writing an interpreter from scratch.