diff options
| author | aob <aob@tilde.institute> | 2020-08-21 21:41:40 -0400 |
|---|---|---|
| committer | aob <aob@tilde.institute> | 2020-08-21 21:41:40 -0400 |
| commit | da4c8d0d9ec7a0e60fea660431218fb4efdfcce0 (patch) | |
| tree | 54ba9fb760dc2ae4be9a1bc2f56fa5ab18f4f1ef | |
| parent | 69b7c1c4ca599dfb62dc98d64ea23fea1d1bb824 (diff) | |
| download | hi-master.tar.gz | |
| -rw-r--r-- | bye.go | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +package hello + +import ( + "fmt" +) + +// You say hello I say goodbye. +func Bye () { + fmt.Println("Bye!") +} |