Skip to content

bradsherman/monkey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The Monkey Programming Language

This repository contains the code I've written while going through Writing An Interpreter in Go.

It finally works! Here's a small excerpt of what you can do with the Monkey Interpreter.

>> let makeAdder = fn(x) { fn(y) { x + y}}
>> let addTwo = makeAdder(2)
>> addTwo(6)
8

TODO

  • Chapter 4: Extending the Parser

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages