rhai 0.3.0

Embedded scripting for Rust
Documentation
1
2
3
4
5
var x = 1000000;
while x > 0 {
    x = x - 1;
}
print(x);