?  slide 46

JSON syntax versus XML

(tripping over delimiters)

{
  "id": 123,
  "title": "Object Thinking",
  "author": "David West",
  "published": {
    "by": "Microsoft Press",
    "year": 2004
  }
}

The same text expressed as XML

<book id="123">
  <title>Object Thinking</title>
  <author>David West</author>
  <published>
    <publisher>Microsoft Press</publisher>
    <year>2004</year>
  </published>
</book>

(after Yegor Bugayenko)

 ?