learnlytics-go/templ/generator/test-switch/template.templ
2025-03-20 12:35:13 +01:00

11 lines
144 B
Plaintext

package testswitch
templ render(input string) {
switch input {
case "a":
{ "it was 'a'" }
default:
{ "it was something else" }
}
}