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