Guest User

Untitled

a guest
Jun 5th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <cars>
  2. <car model="Volvo" color="Blue">
  3. <passenger name="John" />
  4. <passenger name="Jane" />
  5. </car>
  6. <car model="Mazda" color="Lime" />
  7. </cars>
  8.  
  9. cars {
  10. {
  11. model:"Volvo",
  12. color:"Blue",
  13. passengers: {
  14. { name:"John" }
  15. { name:"Jane" }
  16. }
  17. }, {
  18. model:"Mazda",
  19. color:"Lime"
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment