From 1cb4811ba84c34af2216d60e4645bd2c61745bce Mon Sep 17 00:00:00 2001 From: Norton-Lin <358154247@qq.com> Date: Mon, 28 Oct 2024 16:20:56 +0800 Subject: [PATCH] feat: add go file --- 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..020ef36 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module main + +go 1.22.2 diff --git a/main.go b/main.go new file mode 100644 index 0000000..89490cd --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("test") +}