rhai 0.8.2

Embedded scripting for Rust
Documentation
let x = 10;

while x > 0 {
    print(x);
    x = x - 1;
}