添加actions脚本

This commit is contained in:
李寻欢 2023-03-29 15:42:10 +08:00
parent 6ea8e348eb
commit f06d814620
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,11 @@
package main
import "fmt"
import (
"fmt"
"time"
)
func main() {
fmt.Printf("now -> %v", time.Now())
fmt.Println("Hello, World!")
}