Skip to content

Commit

Permalink
fix lua fib
Browse files Browse the repository at this point in the history
  • Loading branch information
mt2d2 committed Jul 9, 2011
1 parent c734be9 commit 61b05df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/complex/fib/fib.lua
@@ -1,6 +1,6 @@
function fib(n) function fib(n)
if n < 3 then if n < 3 then
return 1 return 1
else else
return fib(n-1)+fib(n-2) return fib(n-1)+fib(n-2)
end end
Expand Down

0 comments on commit 61b05df

Please sign in to comment.