commit d73346e030a78e10bc57487ca037cab4ab2acfe8 Author: Joop Kiefte Date: Thu May 7 05:39:18 2020 +0200 Initial commit diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..3ad5d8d --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.kiefte.eu/lapingvino/hivegrind + +go 1.14 diff --git a/main.go b/main.go new file mode 100644 index 0000000..70a7fe5 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello world!") +}