Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fibfor.lua « test « lua-5.1-rc - github.com/torch/luajit-rocks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8bbba39cd7635f3cc7b7b0d2284b85a6864675e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- 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