commit 0a4ada7d6df5d74088b452c57e3ab6ed2f4e6c30 Author: Christian Pointner Date: Mon Dec 30 14:53:32 2024 +0100 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ee4c926 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/test diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..9a53b3c --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module code.spreadspace.org/equinox/test + +go 1.23.4 diff --git a/main.go b/main.go new file mode 100644 index 0000000..a3dd973 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, World!") +}