ref: 6e0fe794da9a0fbec8b55cd0700f599cf54f7d3a
dir: /lua/test/fibfor.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)
end
for i in generatefib(1000) do print(i) end