mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
12 lines
154 B
Nim
12 lines
154 B
Nim
discard """
|
|
output: "<br>"
|
|
"""
|
|
|
|
template htmlTag(tag: untyped) =
|
|
proc tag(): string = "<" & astToStr(tag) & ">"
|
|
|
|
htmlTag(br)
|
|
htmlTag(html)
|
|
|
|
echo br()
|