Expand
Monty Interpreter (Go)
hello-world
fibonacci
factorial
closures
arrays
hash-maps
builtins
hello-world
Reset
Run
1
2
3
4
5
6
7
let name = "World"; let hello = fn(target) { "Hello, " + target; }; hello(name);
Monty Interpreter Repository