Rhai is a programming language created in 2016 by Sophia J. Turner.
#1599on PLDB | 9Years Old |
git clone https://github.com/rhaiscript/rhai
A small, fast, easy-to-use scripting language and evaluation engine that integrates tightly with Rust. Builds for most common targets including no-std and WASM.
fn run(a) {
let b = a + 1;
print("Hello world! a = " + a);
}
run(10);