Sign in
go
/
website
/
277b202ae2a6edfa32080b5a38ec48bea6fbdf25
/
.
/
_content
/
talks
/
2013
/
distsys
/
hello1.go
blob: b423278b41e5d12b1a0fad76ef6442fa7437c0e0 [
file
] [
log
] [
blame
]
// +build ignore,OMIT
package main
import (
"flag"
"github.com/golang/glog"
)
func main() {
flag.Set("logtostderr", "true")
glog.Infof("hello, world")
}