A minimal programming language interpreter written in Go.
- C-like syntax
 - Variable bindings
 - Integers and booleans
 - Arithmetic expressions
 - Built-in functions
 - First-class and higher-order functions
 - Closures
 - String data structure
 - Array data structure
 - Hash data structure
 
- Only ASCII characters are supported
 
go run main.gogo test ./...