| Linux webhost1.zalaszam.hu 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 Path : /usr/share/doc/lua50/examples/ |
| Current File : //usr/share/doc/lua50/examples/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, n)
end
for i in generatefib(1000) do print(i) end