Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aitumik/monkey
Monkey is an Interpreter written in Go. Its features include : functions,variables,arithmetic e.t.c
https://github.com/aitumik/monkey
bnf golang lexer passes token
Last synced: 21 days ago
JSON representation
Monkey is an Interpreter written in Go. Its features include : functions,variables,arithmetic e.t.c
- Host: GitHub
- URL: https://github.com/aitumik/monkey
- Owner: aitumik
- License: mit
- Created: 2021-11-28T09:59:50.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-21T20:05:54.000Z (over 2 years ago)
- Last Synced: 2024-06-20T20:51:42.072Z (7 months ago)
- Topics: bnf, golang, lexer, passes, token
- Language: Go
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```monky
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