initial commit

This commit is contained in:
Bas Kloosterman 2022-03-22 15:58:28 +01:00
commit 47fd1e6994
2 changed files with 10 additions and 0 deletions

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module gitea.baskloosterman.nl/greeter
go 1.17

7
package.go Normal file
View File

@ -0,0 +1,7 @@
package greeter
import "fmt"
func Greet() {
fmt.Println("Hello!")
}