2020-05-01 16:37:13 +08:00

12 lines
94 B
Go

package main
import (
"fmt"
"time"
)
func main() {
now := time.Now()
fmt.Println(now)
}