11 lines
144 B
Plaintext
11 lines
144 B
Plaintext
|
package testswitch
|
||
|
|
||
|
templ render(input string) {
|
||
|
switch input {
|
||
|
case "a":
|
||
|
{ "it was 'a'" }
|
||
|
default:
|
||
|
{ "it was something else" }
|
||
|
}
|
||
|
}
|