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