Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
package main import ("fmt") func main() { var x = 5 fmt.Printf("x is %b \n", x) // 101 x >>= 3 fmt.Printf("x now is %03b \n", x) // 000 }
x is 101
x now is 000