mirror of
https://github.com/vale981/apheleia
synced 2025-03-05 17:41:41 -05:00

* Add gofumpt and goimports as formatter options * Add tests for gofumpt and goimports * changelog Co-authored-by: Radon Rosborough <radon@intuitiveexplanations.com>
12 lines
171 B
Go
12 lines
171 B
Go
package asdfasdf
|
|
func
|
|
|
|
Factorial(x int) int {
|
|
if x <=
|
|
1 {
|
|
return x
|
|
}
|
|
fmt.Println( "Hello there!" )
|
|
return x * Factorial(x - 1,
|
|
)
|
|
}
|