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