Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
package main import ("fmt") func main() { var x = 9 var y = 8 fmt.Printf("x = %b\n",x) fmt.Printf("y = %b\n",y) fmt.Printf("x | y is %b\n",x | y) }
x = 1001
y = 1000
x | y is 1001