Contact: aviboots(AT)netvision.net.il
39,974 questions
51,918 answers
573 users
package main import ( "fmt" ) func main() { n := 32 b := n > 0 && (n&(n-1)) == 0 fmt.Println(b) } /* run: true */