diff options
-rw-r--r-- | bye.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bye.go b/bye.go index c938041..62438fd 100644 --- a/bye.go +++ b/bye.go @@ -9,3 +9,8 @@ func Bye () { fmt.Println("Bye!") } +// ByeBye is twice the bye in one function. +func ByeBye () { + fmt.Println("Bye bye!") +} + |