nondescript/benchmarks/10m.nds

7 lines
58 B
Plaintext
Raw Normal View History

var x = 0;
while (x < 10000000)
x = x + 1
;
2022-02-09 07:01:52 +01:00
print (x);