Skip to content

Instantly share code, notes, and snippets.

@alexitaylor
Last active February 22, 2017 20:56
Show Gist options
  • Save alexitaylor/213de9f056c141351184dc90018631f5 to your computer and use it in GitHub Desktop.
Save alexitaylor/213de9f056c141351184dc90018631f5 to your computer and use it in GitHub Desktop.
fact(1) = 1
fact(2) = 2 * fact(1)
fact(3) = 3 * fact(2)
fact(4) = 4 * fact(3)
fact(5) = 5 * fact(4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment