package asdfasdf func Factorial(x int) int { if x <= 1 { return x } return x * Factorial(x - 1, ) }