-- fmt.templ -- package test templ Hello(name string) {
{ fmt.Sprintf("Hello, %s!", name) }
} -- fmt.templ -- package test import ( "fmt" "strconv" ) templ Hello(name string) {
{ fmt.Sprintf("Hello, %s!", name) }
}