monkey_lang 0.9.6 copy "monkey_lang: ^0.9.6" to clipboard
monkey_lang: ^0.9.6 copied to clipboard

outdatedDart 1 only

Monkey programming language interpreter in Dart.

Writing an Interpreter for the Monkey 🐒 Language in Dart #

Build Status

A fully working interpreter for the Monkey programming language as known from the book Writing an Interpreter in Go, written in Dart.

Install Monkey and start the REPL #

With one command, you can install the monkey binary:

$ pub global activate monkey_lang
Downloading monkey_lang 0.9.1...
[...]
Installed executable monkey.

Now you can run monkey from anywhere you want!

$ monkey
Hello! This is the Monkey programming language!
Feel free to type in commands
>> let answer = fn(){ 6*7; };
>> answer()
42

Run the test suite #

$ pub run test
[...]
00:00 +42: All tests passed! 

Format + analyze the code #

$ ./dartformat_analyze.sh
Formatting directory lib/:
[...]
Formatting directory test/:
[...]
Analyzing [.]...
No issues found

Go ahead and have fun with Monkey!

3
likes
15
pub points
0%
popularity

Publisher

unverified uploader

Monkey programming language interpreter in Dart.

Repository (GitHub)
View/report issues

License

BSD-2-Clause (LICENSE)

More

Packages that depend on monkey_lang