mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 05:29:10 +02:00
10 lines
79 B
Ruby
10 lines
79 B
Ruby
def fib(n)
|
|
if n < 3
|
|
1
|
|
else
|
|
fib(n-1) + fib(n-2)
|
|
end
|
|
end
|
|
|
|
fib(34)
|
|
|