github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/talks/2013/go-sreops/hello.go (about)

     1  // +build OMIT
     2  
     3  package main
     4  
     5  import (
     6  	"flag"
     7  	"fmt"
     8  )
     9  
    10  var message = flag.String("message", "Hello, OSCON!", "what to say")
    11  
    12  func main() {
    13  	flag.Parse()
    14  	fmt.Println(*message)
    15  }