Skip to content

tip

记录学习中遇到的知识点和各种有趣的小技巧。
----:--:-- --:--:--

main.go
package main

import (
    "fmt"
    "time"
)

func main() {
    fmt.Printf("Hello, it's %s time.", time.Now().In(time.FixedZone("CST", 8*3600)).Format(time.DateTime))
}

Sreio Docs