diff options
Diffstat (limited to 'jni/ruby/benchmark/other-lang/fib.pl')
| -rw-r--r-- | jni/ruby/benchmark/other-lang/fib.pl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/jni/ruby/benchmark/other-lang/fib.pl b/jni/ruby/benchmark/other-lang/fib.pl new file mode 100644 index 0000000..a46f666 --- /dev/null +++ b/jni/ruby/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); |
