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