mirror of
https://github.com/ruby/ruby.git
synced 2026-01-26 20:19:19 +00:00
11 lines
79 B
Ruby
11 lines
79 B
Ruby
def fib(n)
|
|
if n < 3
|
|
1
|
|
else
|
|
fib(n-1) + fib(n-2)
|
|
end
|
|
end
|
|
|
|
fib(34)
|
|
|