Guest User

Untitled

a guest
Aug 11th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. Hindley Milner Type Inference in F#
  2. let rec sumList lst =
  3. match lst with
  4. | [] -> 0
  5. | hd :: tl -> hd + sumList tl
Add Comment
Please, Sign In to add comment