Contribute Media
A thank you to everyone who makes this possible: Read More

Bulding an interpreter in RPython

Summary

RPython is a language and toolchain for building interpreters, most prominently PyPy, a Python interpreter. But RPython is a powerful tool for writing interpreters for many dynamic languages. We'll learn how to write a simple interpreter in RPython by implementing a parser, bytecode compiler and VM for a small language.

Details

Improve this page