15 lines
155 B
Go
15 lines
155 B
Go
//golangcitest:args -Egofmt,goimports
|
|
package p
|
|
|
|
import (
|
|
"os"
|
|
"fmt"
|
|
)
|
|
|
|
func goimports(a, b int) int {
|
|
if a != b {
|
|
return 1
|
|
}
|
|
return 2
|
|
}
|