Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created January 27, 2018 02:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/6f2aa7527a682f76c165b91fe0e989ee to your computer and use it in GitHub Desktop.
Save Fhernd/6f2aa7527a682f76c165b91fe0e989ee to your computer and use it in GitHub Desktop.
Catálogo de productos en XML.
<?xml version="1.0" ?>
<!-- Catálogo de productos -->
<Catalogo>
<Nombre>Catálogo 2015</Nombre>
<FechaExpiracion>2016-06-03</FechaExpiracion>
<Productos>
<Producto ID = "100001">
<NombreProducto>Café Negro</NombreProducto>
<Descripcion>El mejor café negro.</Descripcion>
<Precio>8500</Precio>
<Disponible>true</Disponible>
</Producto>
<Producto ID = "100002">
<NombreProducto>Cappuccino</NombreProducto>
<Descripcion>Mezcla espumosa de espresso y leche hervida.</Descripcion>
<Precio>9500</Precio>
<Disponible>true</Disponible>
</Producto>
</Productos>
</Catalogo>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment