commit 91ab2438a3d768d5a152321430fe5590e29ef489 Author: Benjamyn Love Date: Wed Feb 26 10:46:06 2025 +1100 initial diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..e2f2d76 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.lovelynet.net/benjamyn/hellogo + +go 1.24.0 diff --git a/main.go b/main.go new file mode 100644 index 0000000..c048119 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("hello world") +}