8000 GitHub - axhixh/monkey: Standard ML implementation of interpreter and compiler for Monkey language
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ monkey Public

Standard ML implementation of interpreter and compiler for Monkey language

License

Notifications You must be signed in to change notification settings

axhixh/monkey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

0