lua502/test/fibfor.lua
2020-02-25 05:09:07 +02:00

13 lines
257 B
Lua

-- example of for with generator functions
function generatefib (n)
return coroutine.wrap(function ()
local a,b = 1, 1
while a <= n do
coroutine.yield(a)
a, b = b, a+b
end
end, n)
end
for i in generatefib(1000) do print(i) end