Skip to content

An implementation of a Monkey lang interpreter in Rust.

Notifications You must be signed in to change notification settings

emanon001/monkey-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

monkey-rust

An implementation of a Monkey interpreter in Rust.

Usage

$ cargo run
>> 1 + 2
3
>> let factorial = fn(n) { if (n == 1) { 1 } else { n * factorial(n - 1) }}
>> factorial(10)
3628800

About

An implementation of a Monkey lang interpreter in Rust.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages