github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/talks/2013/distsys/hello1.go (about) 1 // +build OMIT 2 3 package main 4 5 import ( 6 "flag" 7 8 "github.com/golang/glog" 9 ) 10 11 func main() { 12 flag.Set("logtostderr", "true") 13 glog.Infof("hello, world") 14 }