Rhai is a programming language created in 2016 by Sophia J. Turner.
| #564on PLDB | 10Years Old |
git clone https://github.com/rhaiscript/rhaiA 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);