feat: add print time.now
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
lab 2021-12-05 01:29:45 +08:00
parent b877f2b9e8
commit f43ef19099

View File

@ -2,8 +2,10 @@ package main
import ( import (
"fmt" "fmt"
"time"
) )
func main() { func main() {
fmt.Println("hello world") fmt.Println("hello world")
fmt.Println("Time:", time.Now())
} }