shithub: sox

ref: b8cb6cff839e945983d974a794b2d9b27c3e9ddd
dir: /lua/test/fibfor.lua/

View raw version
-- 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