mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
23 lines
238 B
JSON
Executable File
23 lines
238 B
JSON
Executable File
// Simple JSON test file
|
|
// (c) 2009 Andreas Rumpf
|
|
|
|
/* a long comment */
|
|
|
|
{
|
|
"key1": null,
|
|
"key2": [
|
|
{},
|
|
{ },
|
|
[],
|
|
|
|
[ /* empty array */ ],
|
|
|
|
-1e10 // another comment
|
|
|
|
|
|
] ,
|
|
"key3": false
|
|
}
|
|
|
|
|