summary refs log tree commit diff stats
path: root/tests/showoff/thtml1.nim
blob: fe0cd3b1efe4aa7c57efebb0155f2cfbc746e7de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
discard """
  output: "<br>"
"""

template htmlTag(tag: untyped) =
  proc tag(): string = "<" & astToStr(tag) & ">"

htmlTag(br)
htmlTag(html)

echo br()