mirror of
https://github.com/ruby/ruby.git
synced 2026-07-29 22:34:58 +08: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)
|
|
|