for example, in go I have x := map[string]bool{"1":true,"2":true}
How can I print it to go.tmpl, using the built-in template package?
// go.tmpl
{{x}}
after render, I want it to be like
x := map[string]bool{"1":true,"2":true}
Do I have some approaches?