rhai/examples/speed_test.rhai

6 lines
58 B
Plaintext
Raw Normal View History

2016-03-02 03:36:46 +01:00
var x = 1000000;
while x > 0 {
x = x - 1;
}
print(x);