mirror of
https://github.com/vale981/apheleia
synced 2025-03-06 01:51:41 -05:00
9 lines
104 B
Go
9 lines
104 B
Go
package asdfasdf
|
|
|
|
func Factorial(x int) int {
|
|
if x <=
|
|
1 {
|
|
return x
|
|
}
|
|
return x * Factorial(x-1)
|
|
}
|