Ad esempio, voglio usare sia text / template sia html / template in un file sorgente. Ma il codice qui sotto genera errori.
import (
"fmt"
"net/http"
"text/template" // template redeclared as imported package name
"html/template" // template redeclared as imported package name
)
func handler_html(w http.ResponseWriter, r *http.Request) {
t_html, err := html.template.New("foo").Parse(`{{define "T"}}Hello, {{.}}!{{end}}`)
t_text, err := text.template.New("foo").Parse(`{{define "T"}}Hello, {{.}}!{{end}}`)
}
require
e leimport
dichiarazioni, semplicemente molto meglio di qualsiasi altra lingua che abbia mai visto