index
:
pez
master
toy interpreter
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
bench.lua
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'bench.lua')
-rw-r--r--
bench.lua
2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench.lua b/bench.lua
index 18e8116..b653cc9 100644
--- a/
bench.lua
+++ b/
bench.lua
@@ -1,4 +1,4 @@
-function fib(n)
+local function fib(n)
if n < 2 then return n end
return fib(n - 2) + fib(n - 1)
end