Sign in
nest-open-source
/
nest-learning-thermostat
/
5.1.8
/
lua
/
b04178c06419fdce3a718b435a91eaf1eaa44148
/
.
/
lua-5.1.4
/
test
/
fibfor.lua
blob: 8bbba39cd7635f3cc7b7b0d2284b85a6864675e3 [
file
] [
log
] [
blame
]
-- 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