1
0
mirror of https://github.com/CPunch/Cosmo.git synced 2025-07-08 20:20:09 +00:00

better iterator example

This commit is contained in:
CPunch 2020-12-31 13:57:02 -06:00
parent e253129e50
commit 58485d9375

@ -13,12 +13,16 @@ proto Range
return nil // exit iterator loop
end
return self.i++, self.i
return self.i++
end
end
for i in Range(10) do
print("->" .. i)
end
local total = 0
for i, x in Range(1000000) do
for i in Range(1000000) do
total = total + i
end