Is there any standard method to check os is 32 or 64 bit? I've check runtime & os package, but can not found. http://play.golang.org/p/d6NywMDMcY
package main
import "fmt"
import "runtime"
func main() {
fmt.Println(runtime.GOOS, runtime.GOARCH)
}