Skip to content
/ monkey Public

Monkey is an Interpreter written in Go. Its features include : functions,variables,arithmetic e.t.c

License

Notifications You must be signed in to change notification settings

aitumik/monkey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Monkey

Monkey is an Interpreter written in Go

Setup

To setup this project you need to have installed golang on your machine and a basic understanding of linguistics hahaha

Example

let a = 5;
let b = 6;

let add = fn(x,y) {
  x + y;
};

let result = add(a,b)

The result will be 11

Resources

  • Engineering a compiler - Book
  • Crafting interpreters - Book
  • Writing and interpreter in go - Book

About

Monkey is an Interpreter written in Go. Its features include : functions,variables,arithmetic e.t.c

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages