commit ac61d0d4b5b1ce735b85d1c59b00e3248310ba50 Author: Shanti Chellaram Date: Sat Mar 15 19:32:28 2025 +0900 makin a game initial commit used go mod init gotris/main diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..785dbca --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gotris/main + +go 1.24.1 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!") +}