package main import "fmt" func SayHello(name string) { fmt.Println("HELLO", name) } func main() { fmt.Println("Coucou") }