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