Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Simple XML

From: tbrownell:veleng at: 9-Mar-2004 13:19

Is there any available scripts that turn xml into rebol blocks? So that ... <root> <person> <name> <fname> Bob </fname <lname> Smith </lname> </name> </person> </root> becomes.. root [ person [name [fname "Bob" lname "Smith"]]] TB