From a2e5a0c36dbbaf1b1478dcfcb52e6c4819897e35 Mon Sep 17 00:00:00 2001 From: mayiming <1627832236@qq.com> Date: Fri, 8 Aug 2025 21:43:26 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E5=88=9D=E5=A7=8B=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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..ac19d27 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module toutoukan + +go 1.23.1 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") +}