Skip to content
/ monkey Public

my implementation of the Monkey scripting language

License

Notifications You must be signed in to change notification settings

bsparks/monkey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Monkey Scripting Language

This is my implementation of the Monkey scripting language as presented in the book Writing An Interpreter In Go by @ThorstenBall

Example Monkey Script

let a = [1, 2, 3];
let add = fn(a, b) { a + b };

let sum = add(a[0], a[2]);

print("Holy cow it works!", "The sum is ", sum);

Documentation

TODO :)

About

my implementation of the Monkey scripting language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published