package main import "fmt" // Hello prints the string "Hello, world" func Hello(name string) string { return "Hello, " + name } func main() { fmt.Println(Hello("world")) }