Advertisement
matyias

json

Jun 21st, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.38 KB | None | 0 0
  1. {
  2.   // Line comments are not included in standard but nonetheless allowed.
  3.   /* As well as block comments. */
  4.   "the only keywords are": [true, false, null],
  5.   "strings with": {
  6.     "no excapes": "pseudopolinomiality"
  7.     "valid escapes": "C-style\r\n and unicode\u0021",
  8.     "illegal escapes": "\0377\x\"
  9.  },
  10.  "some numbers": [
  11.    42,
  12.    -0.0e-0,
  13.    6.626e-34
  14.  ]
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement