Martin Dørum 3 år sedan
förälder
incheckning
4004902202
2 ändrade filer med 2 tillägg och 2 borttagningar
  1. 1
    1
      benchmarks/while-perf/while-test.l2
  2. 1
    1
      benchmarks/while-perf/while-test.py

+ 1
- 1
benchmarks/while-perf/while-test.l2 Visa fil

@@ -1,2 +1,2 @@
i := 0
while {i < 1'000'000} {i = i + 1}
while {i < 10'000'000} {i = i + 1}

+ 1
- 1
benchmarks/while-perf/while-test.py Visa fil

@@ -1,2 +1,2 @@
i = 0
while i < 10000000: i = i + 1
while i < 10_000_000: i = i + 1

Laddar…
Avbryt
Spara