Files
YesNt-Interpreter/benchmarks/arith_loop.js
T
2026-03-05 20:20:56 +01:00

8 lines
81 B
JavaScript

let i = 0;
let s = 0;
while (i < 200000) {
i += 1;
s += i;
}
console.log(s);