mirror of
https://github.com/samba-team/samba.git
synced 2025-01-15 23:24:37 +03:00
390f19b649
Available under the MIT license. Adding it to see how the build farm likes it. They claim to be 100% pure ANSI C and compile everywhere. Lets see. If it breaks badly, we can remove it again.
14 lines
254 B
Lua
14 lines
254 B
Lua
-- 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
|