about summary refs log tree commit diff stats
path: root/bye.go
blob: 62438fd7cf2bd38b35e0bab6fba2f5b9ddff75d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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!")
}