Guest User

Untitled

a guest
Jul 13th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.07 KB | None | 0 0
  1. def fib(n)
  2. if n < 3
  3. 1
  4. else
  5. fib(n-1) + fib(n-2)
  6. end
  7. end
Add Comment
Please, Sign In to add comment