Move to gopath dir and introduce new package

This commit is contained in:
Alexander Krieg
2019-06-15 09:44:29 +00:00
parent c304afad0c
commit 6ce8b89114
2 changed files with 12 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
package hello
import ()
// Hello writes a welcome string
func Hello() string {
return "Hello golang!"
}