From f06d814620ccf67722495ca4b417545008fdb92c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AF=BB=E6=AC=A2?= Date: Wed, 29 Mar 2023 15:42:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0actions=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index a3dd973..ad72bbe 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,11 @@ package main -import "fmt" +import ( + "fmt" + "time" +) func main() { + fmt.Printf("now -> %v", time.Now()) fmt.Println("Hello, World!") }