summaryrefslogtreecommitdiffhomepage
path: root/learnjson.json
diff options
context:
space:
mode:
authoriirelu <totallymyrealemail@hush.ai>2014-03-01 19:49:07 +0000
committeriirelu <totallymyrealemail@hush.ai>2014-03-01 19:49:07 +0000
commitc899fe9eb8e727d9b7a39a1a30dfb48a939b095c (patch)
tree77e04d44c4cf85eeef84079675564f23afc59142 /learnjson.json
parent9894e0ce15a618910f9335e2e46b18ff805d9438 (diff)
added learnjson.json
Forgot this thing, oops.
Diffstat (limited to 'learnjson.json')
-rw-r--r--learnjson.json32
1 files changed, 32 insertions, 0 deletions
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."
+}