Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 254 Bytes

fibfor.lua

File metadata and controls

13 lines (11 loc) · 254 Bytes
 
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