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