Browse Source

oops

master
Martin Dørum 3 years ago
parent
commit
4004902202
2 changed files with 2 additions and 2 deletions
  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 View File

@@ -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 View File

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

Loading…
Cancel
Save