package main import "fmt" func SayHello(name string) { fmt.Println("Bonjour, je m'appelle", name) } func main() { fmt.Println("Coucou") }