RosettaCodeData/Task/XML-Output/Tcl/xml-output-2.tcl
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

13 lines
430 B
Tcl

package require tdom
set xml [dom createDocument CharacterRemarks]
foreach {name comment} {
April "Bubbly: I'm > Tam and <= Emily"
"Tam O'Shanter" "Burns: \"When chapman billies leave the street ...\""
Emily "Short & shrift"
} {
set elem [$xml createElement Character]
$elem setAttribute name $name
$elem appendChild [$xml createTextNode $comment]
[$xml documentElement] appendChild $elem
}
$xml asXML