From e99e49c82619d5d1f626fcd7f1fc84c249fe927b Mon Sep 17 00:00:00 2001 From: wangyang Date: Tue, 28 Feb 2023 10:59:13 +0800 Subject: [PATCH] add hello world --- tmp.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tmp.go diff --git a/tmp.go b/tmp.go new file mode 100644 index 0000000..b1b14d0 --- /dev/null +++ b/tmp.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello World!") +}