10 lines
98 B
Plaintext
10 lines
98 B
Plaintext
|
package testif
|
||
|
|
||
|
templ render(d data) {
|
||
|
if d.IsTrue() {
|
||
|
{ "True" }
|
||
|
} else {
|
||
|
{ "False" }
|
||
|
}
|
||
|
}
|