initial commit

This commit is contained in:
Martin Felis
2013-12-04 00:34:52 +01:00
commit 73d1ceb81d
131 changed files with 29964 additions and 0 deletions
+13
View File
@@ -0,0 +1,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