Skip to content

taga3s/monkey-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

145 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

monkey-rs

Rust implementation of the Monkey language, based on the book Writing An Interpreter In Go.

Usage

Web playground

The web playground is deployed on https://taga3s.github.io/monkey-rs/.

REPL (crates/repl)

  1. Run the REPL with following command.
just repl
  1. Type in Monkey code and press Enter to execute.
>> let add = fn(a, b) { a + b; };
>> add(10, 15);
25

Runner (crates/runner)

just run <file_path>

About

Monkey language in Rust

Topics

Resources

Stars

Watchers

Forks

Contributors

Languages