/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

fsharp.github.io
| | thomascountz.com
11.2 parsecs away

Travel
| | [AI summary] The article discusses the development of a markdown-to-HTML compiler called markie, explaining the core steps of compiler architecture including lexical analysis, parsing, and target code emission, with examples using Ruby and real-world applications.
| | bernsteinbear.com
14.0 parsecs away

Travel
| | Adding a reader to our Lisp compiler
| | nnethercote.github.io
10.3 parsecs away

Travel
| | Like most compilers, rustc (the Rust compiler) has a lexer that breaks source code into tokens, which are small units such as identifiers, literals, operators, and punctuation. The parser then checks that these tokens are present in an order that satisfies Rust's grammar.
| | notes.eatonphil.com
26.8 parsecs away

Travel
| Writing a lisp compiler from scratch in JavaScript: 1. lisp to assembly