Guest User

Untitled

a guest
Feb 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. fib_help targ n a b = let val = a + b
  2. in if (n == targ) then val else fib_help targ (n + 1) val a
  3.  
  4. fib 1 = 1
  5. fib 2 = 1
  6. fib targ = fib_help targ 3 1 1
Add Comment
Please, Sign In to add comment