diff --git a/test.json b/test.json index 23435a2..0e72c64 100644 --- a/test.json +++ b/test.json @@ -1,7 +1,12 @@ { - "a": 1., // comment - 'b': 0xff, // comment - 'c': -infinity, /* - multiline comment - */ + // comments + unquoted: 'and you can quote me on that', + singleQuotes: 'I can use "double quotes" here', + lineBreaks: "Look, Mom! \ +No \\n's!", + hexadecimal: 0xdecaf, + leadingDecimalPoint: .8675309, andTrailing: 8675309., + positiveSign: +1, + trailingComma: 'in objects', andIn: ['arrays',], + "backwardsCompatible": "with JSON", }