Contact: aviboots(AT)netvision.net.il
40,762 questions
53,137 answers
573 users
package main import ( "fmt" ) func main() { x, y := 3, -9 b := (x ^ y) < 0 fmt.Println(b) x, y = 5, 6 b = (x ^ y) < 0 fmt.Println(b) } /* run: true false */