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

9 lines
104 B
Go

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