Skip to content

Instantly share code, notes, and snippets.

@robhinds
Last active December 24, 2015 18:49
Show Gist options
  • Save robhinds/6845460 to your computer and use it in GitHub Desktop.
Save robhinds/6845460 to your computer and use it in GitHub Desktop.
def factorial ={ n ->
if (n == 0) 1
else n * factorial(n - 1)
}
factorial(4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment