summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/benchmark/other-lang/fib.pl
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/benchmark/other-lang/fib.pl')
-rw-r--r--ruby_1_9_3/benchmark/other-lang/fib.pl11
1 files changed, 0 insertions, 11 deletions
diff --git a/ruby_1_9_3/benchmark/other-lang/fib.pl b/ruby_1_9_3/benchmark/other-lang/fib.pl
deleted file mode 100644
index a46f666d1e..0000000000
--- a/ruby_1_9_3/benchmark/other-lang/fib.pl
+++ /dev/null
@@ -1,11 +0,0 @@
-sub fib{
- my $n = $_[0];
- if($n < 3){
- return 1;
- }
- else{
- return fib($n-1) + fib($n-2);
- }
-};
-
-&fib(34);