rhai/scripts/for2.rhai

29 lines
423 B
JavaScript
Raw Normal View History

2022-07-24 17:03:35 +02:00
//! This script runs for-loops
2022-01-20 05:06:36 +01:00
2020-05-31 17:44:49 +02:00
const MAX = 1_000_000;
2021-04-04 17:22:45 +02:00
print(`Iterating an array with ${MAX} items...`);
2020-05-31 17:44:49 +02:00
print("Ready... Go!");
let now = timestamp();
let list = [];
2022-01-20 05:06:36 +01:00
// Loop over range
2021-12-15 05:06:17 +01:00
for i in 0..MAX {
2020-05-31 17:44:49 +02:00
list.push(i);
}
2021-06-07 08:52:45 +02:00
print(`Time = ${now.elapsed} seconds...`);
2020-05-31 17:44:49 +02:00
let sum = 0;
2022-01-20 05:06:36 +01:00
// Loop over array
2020-05-31 17:44:49 +02:00
for i in list {
sum += i;
}
2021-04-04 17:22:45 +02:00
print(`Sum = ${sum}`);
2021-06-07 08:52:45 +02:00
print(`Finished. Total run time = ${now.elapsed} seconds.`);