rhai 0.16.0

Embedded scripting for Rust
Documentation
1
2
3
4
5
6
7
8
9
let x = [1, 2, 3];

print("x[1] should be 2:");
print(x[1]);

x[1] = 5;

print("x[1] should be 5:");
print(x[1]);