Files
Nim/tests/showoff/thtml1.nim
2017-07-25 09:28:23 +02:00

12 lines
154 B
Nim

discard """
output: "<br>"
"""
template htmlTag(tag: untyped) =
proc tag(): string = "<" & astToStr(tag) & ">"
htmlTag(br)
htmlTag(html)
echo br()