package main import ( "fmt" ) func main() { test := 65 + ((true ? 1 : 0) << 1) + ((true ? 1 : 0) << 0) fmt.Println(test) }