JohnBSmith / moss

Moss interpreter (experimental implementation)

Home Page:https://johnbsmith.github.io/moss/home.htm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Home | Language | Library | Examples | Rust-Moss examples

Moss interpreter

Moss is a dynamic programming language. Its interpreter kernel is written in Rust.

Example of calling Moss code from Rust:

use moss::object::Object;

fn main() {
    let i = moss::Interpreter::new();
    i.rte.set("a",Object::from(vec![1,2,3,4]));

    let v: Vec<i32> = i.eval_cast(r#"
        a.map(|x| 2*x)
    "#);

    println!("{:?}",v);
}

About

Moss interpreter (experimental implementation)

https://johnbsmith.github.io/moss/home.htm

License:Creative Commons Zero v1.0 Universal


Languages

Language:Rust 99.4%Language:HTML 0.5%Language:Shell 0.1%Language:Scheme 0.0%