2020-03-16 07:50:12 +01:00
|
|
|
// This script runs 1 million iterations
|
|
|
|
// to test the speed of the scripting engine.
|
|
|
|
|
2020-04-11 10:06:57 +02:00
|
|
|
let now = timestamp();
|
2020-03-16 07:50:12 +01:00
|
|
|
let x = 1_000_000;
|
|
|
|
|
|
|
|
print("Ready... Go!");
|
|
|
|
|
2016-03-02 03:36:46 +01:00
|
|
|
while x > 0 {
|
2020-05-25 14:14:31 +02:00
|
|
|
x -= 1;
|
2016-03-02 03:36:46 +01:00
|
|
|
}
|
2020-03-16 07:50:12 +01:00
|
|
|
|
2020-05-30 04:30:21 +02:00
|
|
|
print("Finished. Run time = " + now.elapsed + " seconds.");
|