Skip to content

Instantly share code, notes, and snippets.

@ArturKarbone
Last active August 29, 2015 14:10
Show Gist options
  • Save ArturKarbone/feb15bde965b8247cefd to your computer and use it in GitHub Desktop.
Save ArturKarbone/feb15bde965b8247cefd to your computer and use it in GitHub Desktop.
F# expressive factorial
let a func = func
let from value = value
let rec factorial n =
match n with
| 0 | 1 -> 1
| _ -> n * factorial(n-1)
a factorial (from 4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment