Skip to content

Instantly share code, notes, and snippets.

@suzuken
Created August 8, 2016 02:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save suzuken/517c532fc80767ac362449772041faf5 to your computer and use it in GitHub Desktop.
Save suzuken/517c532fc80767ac362449772041faf5 to your computer and use it in GitHub Desktop.
package main
import "flag"
import "fmt"
func main() {
var (
s = flag.String("s", "s-tanno", "who is..")
)
flag.Parse()
fmt.Printf("%s is god", *s)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment