// Verify my understanding of the &^ operator. package main func main() { println(5 &^ 3) println(3 &^ 5) }