Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 23, 2014 16:51
Show Gist options
  • Save Fhernd/22c711f54205b79361e9 to your computer and use it in GitHub Desktop.
Save Fhernd/22c711f54205b79361e9 to your computer and use it in GitHub Desktop.
Datos de libros en XML.
<?xml version="1.0" encoding="UTF-8"?>
<biblioteca>
<libro>
<titulo>Yo, Robot</titulo>
<autor>
<nombre>Isaac</nombre>
<apellido>Asimov</apellido>
</autor>
</libro>
<libro>
<titulo>El Ranger del Espacio</titulo>
<autor>
<nombre>Isaac</nombre>
<apellido>Asimov</apellido>
</autor>
</libro>
<libro>
<titulo>Los días azules</titulo>
<autor>
<nombre>Fernando</nombre>
<apellido>Vallejo</apellido>
</autor>
</libro>
</biblioteca>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment