diff options
author | Lua Team <team@lua.org> | 2004-03-24 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 2004-03-24 12:00:00 +0000 |
commit | ced7bbbe7a257ce6de94069d5dbf6672aeafd4d9 (patch) | |
tree | 2a01a79e6a4f451dccd247c70310ad957204cefa /test/fibfor.lua | |
parent | e7731a8fb8a317aa5c444ef073bfad82fa5baa54 (diff) | |
download | lua-github-5.1-work0.tar.gz |
Lua 5.1-work05.1-work0
Diffstat (limited to 'test/fibfor.lua')
-rw-r--r-- | test/fibfor.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fibfor.lua b/test/fibfor.lua index 19bb34b4..8bbba39c 100644 --- a/test/fibfor.lua +++ b/test/fibfor.lua @@ -7,7 +7,7 @@ function generatefib (n) coroutine.yield(a) a, b = b, a+b end - end, n) + end) end for i in generatefib(1000) do print(i) end |