readme-example.json5 452 B

1234567891011121314151617181920212223242526
  1. {
  2. foo: 'bar',
  3. while: true,
  4. this: 'is a \
  5. multi-line string',
  6. // this is an inline comment
  7. here: 'is another', // inline comment
  8. /* this is a block comment
  9. that continues on another line */
  10. hex: 0xDEADbeef,
  11. half: .5,
  12. delta: +10,
  13. to: Infinity, // and beyond!
  14. finally: 'a trailing comma',
  15. oh: [
  16. "we shouldn't forget",
  17. 'arrays can have',
  18. 'trailing commas too',
  19. ],
  20. }