17 lines
339 B
JSON
17 lines
339 B
JSON
// JSON does not technically support comments, but this is our own parser, so who cares :)
|
|
{
|
|
"key": "string value",
|
|
"bool": true,
|
|
"int32": 32046,
|
|
"double": 32.91568,
|
|
"array": [
|
|
"hi",
|
|
"arrays aren't type safe",
|
|
42
|
|
],
|
|
"nested object": {
|
|
"oops": "I did it again",
|
|
"nested array": [ 2, 4, 6, 8, "who do we appreciate?" ]
|
|
}
|
|
}
|