summaryrefslogtreecommitdiff
path: root/trunk/benchmark/other-lang/fib.scm
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/benchmark/other-lang/fib.scm')
-rw-r--r--trunk/benchmark/other-lang/fib.scm7
1 files changed, 7 insertions, 0 deletions
diff --git a/trunk/benchmark/other-lang/fib.scm b/trunk/benchmark/other-lang/fib.scm
new file mode 100644
index 0000000000..2fc4e225bd
--- /dev/null
+++ b/trunk/benchmark/other-lang/fib.scm
@@ -0,0 +1,7 @@
+(define (fib n)
+ (if (< n 3)
+ 1
+ (+ (fib (- n 1)) (fib (- n 2)))))
+
+(fib 34)
+