```go
func main() {
tmpl := "I will be switching from {{.Language1}} to {{.Language2}} for posting source code jokes to mastodon 10x faster"
data := struct {
Language1 string
Language2 string
}{
Language1: "English",
Language2: "golang",
}
t, err := template.New("message").Parse(tmpl)
err = t.Execute(os.Stdout, data)
}
```
Post
March 12, 2025