Favorite Compiler and Interpreter Resources
eatonphil.com·1d·
Discuss: Hacker News
⚙️Compilers
Preview
Report Post

My personal path, a hobbyist, was focused at first on interpreters for Brainfuck, Scheme, lower-case forth, and lower-case lisp. I had a bit of "formal" undergraduate training in one PL course and one compilers course I took before I dropped out, but for the most part I hacked on stuff since then for fun and education.

After I was confident implementing some of those minimal languages, I moved on to minimal versions of Lua, JavaScript/TypeScript, Python, SQL and Go; varying between implementing AST interpreters, bytecode VMs and native-code compilers (via C, LLVM, and x86). Either using the language’s first-party parser or implementing my own handwritten parser.

Some blind spots

I have never implemented garbage collection myself (at best I’ve hooked into the host language’…

Similar Posts

Loading similar posts...