Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 663 Bytes

readme.md

File metadata and controls

14 lines (11 loc) · 663 Bytes

Interpreter and Compiler for Monkey

This project is a Standard ML implementation of interpreter and compiler for Monkey, the language of Thorsten Ball's book on interpreter and compiler.

The books are available at Writing An Interpreter in Go and Writing A Compiler in Go. These books implement using Go. This repository uses Standard ML for its implementation.

This project is my attempt at learning Standard ML while learning about interpreters and compilers. The focus is on writing idiomatic Standard ML code than staying true to the implementation in the book.