Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

legacy_test_comment_02.json 505B

9 månader sedan
1234567891011121314151617181920212223242526
  1. {
  2. /* C-style comment
  3. C-style-2 comment */
  4. "c-test" : {
  5. "a" : 1,
  6. /* Internal comment c-style */
  7. "b" : 2
  8. },
  9. // C++-style comment
  10. "cpp-test" : {
  11. // Multiline comment cpp-style
  12. // Second line
  13. "c" : 3,
  14. // Comment before double
  15. "d" : 4.1,
  16. // Comment before string
  17. "e" : "e-string",
  18. // Comment before true
  19. "f" : true,
  20. // Comment before false
  21. "g" : false,
  22. // Comment before null
  23. "h" : null
  24. }
  25. }