Files
Nim/tests/showoff/thtml1.nim
2014-01-13 01:05:09 +01:00

12 lines
167 B
Nim

discard """
output: "<br>"
"""
template htmlTag(tag: expr) {.immediate.} =
proc tag(): string = "<" & astToStr(tag) & ">"
htmlTag(br)
htmlTag(html)
echo br()