blob: ee87d615da0182abc1407403bffb47da0c95bb26 [file] [log] [blame]
-- suggestedfix_greater_than_9_2 --
package invertifcondition
import (
"fmt"
"os"
)
func GreaterThan() {
if len(os.Args) <= 2 {
fmt.Println("B")
} else { //@suggestedfix("i", "refactor.rewrite", "")
fmt.Println("A")
}
}