Guest User

Untitled

a guest
Feb 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. def fib(n)
  2. if n<2
  3. n
  4. else
  5. fib(n-2)+fib(n-1)
  6. end
  7. end
  8. print(fib(20), "\n");
Add Comment
Please, Sign In to add comment