package hello import ( "fmt" ) // You say hello I say goodbye. func Bye () { fmt.Println("Bye!") } // ByeBye is twice the bye in one function. func ByeBye () { fmt.Println("Bye bye!") }