mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
14 lines
206 B
Nim
14 lines
206 B
Nim
discard """
|
|
file: "txmltree.nim"
|
|
output: "true"
|
|
"""
|
|
|
|
import xmltree, strtabs
|
|
|
|
var x = <>a(href="nimrod.de", newText("www.nimrod-test.de"))
|
|
|
|
echo($x == "<a href=\"nimrod.de\">www.nimrod-test.de</a>")
|
|
|
|
|
|
|