1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-01-10 20:40:14 +02:00
nn-usb-fpga/sie_fs/root/scripts/lua/test/fibfor.lua

14 lines
254 B
Lua
Raw Normal View History

2010-09-22 01:05:23 +03:00
-- 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