From 09e3c87a82eea09084bc966635f9f59583f984bc Mon Sep 17 00:00:00 2001 From: silverwind Date: Sat, 9 Sep 2023 16:14:14 +0200 Subject: [PATCH] add more --- test.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) 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", }