apheleia/test/formatters/samplecode/gofmt/in.go
Radon Rosborough 53f243b111
Add formatter tests (#72)
Closes #24
Builds on #25 by @PrimaryCanary
2022-01-05 15:35:12 -08:00

11 lines
133 B
Go

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