Sign in
go
/
talks
/
c9f0190a9d8676e253fa0e642ae0dfb74e9ffc2e
/
.
/
2013
/
go-sreops
/
hello.go
blob: adaeee125fecce4afb609d09cd85243a03b56ff9 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import (
"flag"
"fmt"
)
var message = flag.String("message", "Hello, OSCON!", "what to say")
func main() {
flag.Parse()
fmt.Println(*message)
}