index
:
pez
master
toy interpreter
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
bench.pez
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.pez')
-rw-r--r--
bench.pez
2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench.pez b/bench.pez
index e5bb20e..e48d69a 100644
--- a/
bench.pez
+++ b/
bench.pez
@@ -1,4 +1,4 @@
-@fib: {[n]
+@fib: $[n] {
n < 2 ? n : fib[n - 2] + fib[n - 1]
}