rhai/examples/while.rhai
2016-03-01 21:36:46 -05:00

7 lines
58 B
Plaintext

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