about summary refs log tree commit diff stats
path: root/bye.go
blob: c9380419e8200c6371826831dcba997884cfcbdc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package hello

import (
	"fmt"
)

// You say hello I say goodbye.
func Bye () {
	fmt.Println("Bye!")
}