Skip to content

Instantly share code, notes, and snippets.

@kunigami
Last active October 2, 2017 06:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/339b5988e7dcf7debc00aa1014e91b0a to your computer and use it in GitHub Desktop.
Save kunigami/339b5988e7dcf7debc00aa1014e91b0a to your computer and use it in GitHub Desktop.
let rec size: 'a. 'a seq -> int = fun xs
| Nil -> 0
| Cons (_, xs) -> 1 + 2 * (size xs)
;;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment