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