rhai/scripts/while.rhai

9 lines
91 B
JavaScript
Raw Normal View History

2022-07-24 23:03:35 +08:00
//! This script runs a while loop.
2020-03-16 14:50:12 +08:00
let x = 10;
2016-03-01 21:36:46 -05:00
while x > 0 {
print(x);
2020-05-25 20:14:31 +08:00
x -= 1;
2016-03-01 21:36:46 -05:00
}