learnlytics-go/templ/generator/test-switchdefault/template.templ

11 lines
153 B
Plaintext
Raw Normal View History

2025-03-20 12:35:13 +01:00
package testswitchdefault
templ template(input string) {
switch input {
case "a":
{ "it was 'a'" }
default:
{ "it was something else" }
}
}