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

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