mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
13 lines
193 B
Nim
13 lines
193 B
Nim
discard """
|
|
file: "txmlgen.nim"
|
|
output: "<h1><a href=\"http://force7.de/nimrod\">Nimrod</a></h1>"
|
|
"""
|
|
import htmlgen
|
|
|
|
var nim = "Nimrod"
|
|
echo h1(a(href="http://force7.de/nimrod", nim))
|
|
|
|
|
|
|
|
|