#golang As Go 1.11.12 and 1.12.7 are now out here's a quick Go quiz. What's the output of: ============ package main import "fmt" var x int32 = -1 func main() { if x != -1 { fmt.Println("a") return } if x > 0 || x != -1 { fmt.Println("b") return } fmt.Println("c") }
