initial commit

This commit is contained in:
Christian Pointner 2024-12-30 14:53:32 +01:00
commit 0a4ada7d6d
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/test

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module code.spreadspace.org/equinox/test
go 1.23.4

7
main.go Normal file
View file

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