apheleia/test/formatters/samplecode/gofumpt/in.go
Abin Simon deab8fb972
Add gofumpt and goimports as formatter options (#147)
* Add gofumpt and goimports as formatter options

* Add tests for gofumpt and goimports

* changelog

Co-authored-by: Radon Rosborough <radon@intuitiveexplanations.com>
2022-12-10 02:07:34 +00:00

10 lines
130 B
Go

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