Monkey programming language from Writing an Interpreter in Go
Some additional language features I added that aren't covered by the book
- Single line comments:
// this is ignored whileloopslet i = 0; while (i < 5) { let i = i + 1 }
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Monkey programming language from Writing an Interpreter in Go
Some additional language features I added that aren't covered by the book
// this is ignoredwhile loops let i = 0; while (i < 5) { let i = i + 1 }