2020-03-16 14:50:12 +08:00
|
|
|
// This script runs 1 million iterations
|
|
|
|
// to test the speed of the scripting engine.
|
|
|
|
|
|
|
|
let x = 1_000_000;
|
|
|
|
|
|
|
|
print("Ready... Go!");
|
|
|
|
|
2016-03-01 21:36:46 -05:00
|
|
|
while x > 0 {
|
|
|
|
x = x - 1;
|
|
|
|
}
|
2020-03-16 14:50:12 +08:00
|
|
|
|
|
|
|
print("Finished.");
|