Guest User

Untitled

a guest
Jun 18th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
OCaml 0.09 KB | None | 0 0
  1. let rec fibnum n = if n = 0 then 0 else (if n = 1 then 1 else fibnum(n-1) + fibnum(n-2));;
Add Comment
Please, Sign In to add comment