Skip to content

Instantly share code, notes, and snippets.

@martincartledge
Created July 8, 2020 18:48
func factorial(n int) int {
// n = 4
if n == 0 {
return 1
}
return n * factorial(n-1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment