Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
package main import ( "fmt" "strconv" ) func main() { if strconv.IntSize == 32 { fmt.Println("32-bit") } if strconv.IntSize == 64 { fmt.Println("64-bit") } } /* run: 64-bit */