mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
9 lines
80 B
Ruby
Executable File
9 lines
80 B
Ruby
Executable File
# Fib 39
|
|
|
|
def fib n
|
|
return n if n < 2
|
|
fib(n-2) + fib(n-1)
|
|
end
|
|
|
|
puts fib(39)
|