aboutsummaryrefslogtreecommitdiff
path: root/test/formatters/samplecode/gofumpt/out.go
blob: 1437eb1be9f41252031ea096fb162c9a8a005a05 (plain)
1
2
3
4
5
6
7
8
package asdfasdf

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