From ac61d0d4b5b1ce735b85d1c59b00e3248310ba50 Mon Sep 17 00:00:00 2001 From: Shanti Chellaram Date: Sat, 15 Mar 2025 19:32:28 +0900 Subject: [PATCH] makin a game initial commit used go mod init gotris/main --- go.mod | 3 +++ main.go | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 go.mod create mode 100644 main.go 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!") +}