From c899fe9eb8e727d9b7a39a1a30dfb48a939b095c Mon Sep 17 00:00:00 2001 From: iirelu Date: Sat, 1 Mar 2014 19:49:07 +0000 Subject: added learnjson.json Forgot this thing, oops. --- learnjson.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 learnjson.json diff --git a/learnjson.json b/learnjson.json new file mode 100644 index 00000000..b3f8c30c --- /dev/null +++ b/learnjson.json @@ -0,0 +1,32 @@ +{ + "numbers": 0, + "strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".", + "has bools?": true, + "nothingness": null, + + "big number": 1.2e+100, + + "objects": { + "comment": "Most of your structure will come from objects.", + + "array": [0, 1, 2, 3, "Arrays can have anything in them.", 5], + + "another object": { + "comment": "These things can be nested, very useful." + } + }, + + "silliness": [ + { + "sources of potassium": ["bananas"] + }, + [ + [1, 0, 0, 0], + [0, 1, 0, 0], + [0, 0, 1, "neo"], + [0, 0, 0, 1] + ] + ], + + "that was short": "And, you're done. You know know everything JSON has to offer." +} -- cgit v1.2.3