Skip to content

Instantly share code, notes, and snippets.

@knubie
Created February 25, 2014 19:18
Show Gist options
  • Save knubie/9215679 to your computer and use it in GitHub Desktop.
Save knubie/9215679 to your computer and use it in GitHub Desktop.
do -> do factorial = (n = 5) ->
if n <= 1 then 1 else n * factorial(n-1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment