Skip to content

Instantly share code, notes, and snippets.

@t0yv0
Created September 15, 2010 21:57
Show Gist options
  • Save t0yv0/581564 to your computer and use it in GitHub Desktop.
Save t0yv0/581564 to your computer and use it in GitHub Desktop.
let rec fac = function
| 0 -> 1
| n -> fac (n - 1) * n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment