Files
gf/geg/other/test.go
2018-07-11 13:51:03 +08:00

15 lines
264 B
Go

package main
import (
"fmt"
"time"
)
func main() {
//t, err := gtime.StrToTime("2018-01-02 13:08:01")
//fmt.Println(err)
//fmt.Println(t.Format("3:4"))
//fmt.Println(time.Now().Format(".000"))
fmt.Println(time.Now().Format(".000"))
}