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

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