rhai 0.8.2

Embedded scripting for Rust
Documentation
1
2
3
4
let x = [1, 2, 3];
print(x[1]);
x[1] = 5;
print(x[1]);