monkey-dart
monkey-dart copied to clipboard
Writing an interpreter for the Monkey 🐒 language in Dart
Results
2
monkey-dart issues
Sort by
recently updated
recently updated
newest added
I tried to enter the fibonacci function from https://interpreterbook.com, but your REPL didn't give me a prompt after I entered the final `};`. When I instead entered this one-liner, I...
```bash # Wouldn't it be beautiful if we could run monkey programs like this? echo 'let a = 42; a;' | monkey # or how about this? monkey < helloworld.monkey...