shithub: sox

ref: 28fe92a7ac13cd38261ca059b73362c13844e6b2
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