Files
learnlytics-go/templ/cmd/templ/imports/testdata/twoimports.txtar
2025-03-20 12:35:13 +01:00

22 lines
308 B
Plaintext

-- fmt.templ --
package test
templ Hello(name string) {
<div id={ strconv.Atoi("123") }>
{ fmt.Sprintf("Hello, %s!", name) }
</div>
}
-- fmt.templ --
package test
import (
"fmt"
"strconv"
)
templ Hello(name string) {
<div id={ strconv.Atoi("123") }>
{ fmt.Sprintf("Hello, %s!", name) }
</div>
}