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

Factorial(x    int)     int {
	if    x <=
    1    {
		   return x
}
		fmt.Println(    "Hello there!"    )
	return x * Factorial(x   -  1,
)
    }