Skip to content

💡 关于本站

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

📚 文档分类

编程语言

数据库

DevOps & 运维

中间件

基础知识

其他


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