1 2 3 4 5 6 7 8 9 10 11
package asdfasdf func Factorial(x int) int { if x <= 1 { return x } return x * Factorial(x - 1, ) }