aboutsummaryrefslogtreecommitdiff
path: root/test/formatters/samplecode/gofumpt/in.go
blob: c70abb443d386dfd840d312b741e27080c75a3c0 (plain)
1
2
3
4
5
6
7
8
9
10
package  asdfasdf

func Factorial(x    int)     int {

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