Yami Odymel https://invade.tw/ says to OwO
/go@mmis_js_bot package main import ( "html/template" "os" ) type 使用者 struct { Nickanme string } func main() { 模板 := template.New("測試模板") 模板, _ = 模板.Parse("早安!{{.Nickanme}}!") 資料 := 使用者{Nickanme: "洨洨安"} 模板.Execute(os.Stdout, 資料) }