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

outdatedDart 1 only

Monkey programming language interpreter in Dart.

Writing an Interpreter 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.

Before you start, get the dependencies:

$ pub get
Resolving dependencies...
[...]

Go ahead and start the REPL #

$ dart lib/repl/repl.dart
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

TODOs #

  • Tell the world about how awesome the book is!
  • Create Dart library so every Dart developer can import the Monkey language
  • Surprise…
3
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Monkey programming language interpreter in Dart.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on monkey_lang