1
0

Fix small type in addictive_addition benchmarks

This commit is contained in:
Jeff 2025-01-09 14:41:51 -05:00
parent 0d39d91cc7
commit 6eac92f4ce
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
local i = 1 local i = 0
while i < 5000000 do while i < 5000000 do
i = i + 1 i = i + 1

View File

@ -1,4 +1,4 @@
i = 1 i = 0
while i < 5_000_000: while i < 5_000_000:
i += 1 i += 1