Learning-HTMX/hello.templ

11 lines
187 B
Plaintext

package main
var myVar string = "some string, changed. and more"
var anotherVar string = "hoho, cool"
templ hello(name string) {
<div>Hello, {name}. referencing var: {myVar}</div>
}