From 5d09f165763f0b1fdec4f1664b033181ef08682f Mon Sep 17 00:00:00 2001 From: ChrisJr404 Date: Tue, 5 May 2026 17:21:47 -0400 Subject: [PATCH] Add Mukul Rathi's compiler series to Programming Language 11-part series on building a compiler for the Bolt language: OCaml/Menhir parser, type checking, generics, inheritance with vtables, dataflow-based data-race analysis, concurrency runtime, and LLVM IR codegen via the C++ API. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0a2e252..59ddc45 100644 --- a/README.md +++ b/README.md @@ -338,6 +338,7 @@ It's a great way to learn. * [**JavaScript**: _Let’s go write a Lisp_](https://idiocy.org/lets-go-write-a-lisp/part-1.html) * [**OCaml**: _Writing a C Compiler_](https://norasandler.com/2017/11/29/Write-a-Compiler.html) * [**OCaml**: _Writing a Lisp, the series_](https://bernsteinbear.com/blog/lisp/) +* [**OCaml / C++**: _How I wrote my own "proper" programming language_](https://mukulrathi.com/create-your-own-programming-language/intro-to-compiler/) * [**Pascal**: _Let's Build a Compiler_](https://compilers.iecc.com/crenshaw/) * [**Python**: _A Python Interpreter Written in Python_](http://aosabook.org/en/500L/a-python-interpreter-written-in-python.html) * [**Python**: _lisp.py: Make your own Lisp interpreter_](http://khamidou.com/compilers/lisp.py/)