From 64b955da9d79511f0d2b41a90bb0eacd54675773 Mon Sep 17 00:00:00 2001 From: HeZhaohui Date: Mon, 29 Dec 2025 15:46:18 +0800 Subject: [PATCH] =?UTF-8?q?=20=E2=9C=A8Feat:=20=E9=9A=8F=E6=9C=BA=E6=95=B0?= =?UTF-8?q?=E7=94=9F=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index d8c7633..f31fd86 100644 --- a/main.go +++ b/main.go @@ -1 +1,11 @@ -package go_study +package main + +import ( + "fmt" + "math/rand" +) + +func main() { + fmt.Println("Hello World") + fmt.Println("My favorite number is", rand.Intn(100)) +}