2014-04-20 05:19:24 +08:00
|
|
|
{
|
|
|
|
/* C-style comment
|
|
|
|
|
|
|
|
C-style-2 comment */
|
|
|
|
"c-test" : {
|
|
|
|
"a" : 1,
|
|
|
|
/* Internal comment c-style */
|
|
|
|
"b" : 2
|
|
|
|
},
|
|
|
|
// C++-style comment
|
|
|
|
"cpp-test" : {
|
2014-10-08 11:53:16 +08:00
|
|
|
// Multiline comment cpp-style
|
|
|
|
// Second line
|
2014-04-20 05:19:24 +08:00
|
|
|
"c" : 3,
|
2015-01-21 01:11:13 +08:00
|
|
|
// Comment before double
|
|
|
|
"d" : 4.1,
|
|
|
|
// Comment before string
|
|
|
|
"e" : "e-string",
|
|
|
|
// Comment before true
|
|
|
|
"f" : true,
|
|
|
|
// Comment before false
|
|
|
|
"g" : false,
|
|
|
|
// Comment before null
|
|
|
|
"h" : null
|
2014-04-20 05:19:24 +08:00
|
|
|
}
|
|
|
|
}
|