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