package main import "fmt" func hello(name string) { fmt.Printf("Hello World %s",name) } func main() { hello("b0y") }