Folder full of pertinent coursework
{1"key": "value",23"keys": "must always be enclosed in double quotes",4"comment": "JSON is a structured, language-independent data format",5"comment": "JSON has no comment support by default",6"origin": "This example was borrowed from http://learnxinyminutes.com/docs/json/",78"numbers": 0,9"strings": "Hellø, wørld. All unicode is allowed, along with \"escaping\".",10"has bools?": true,11"nothingness": null,1213"big number": 1.2e+100,1415"objects": {16"comment": "Most of your structure will come from objects.",1718"array": [0, 1, 2, 3, "Arrays can have anything in them.", 5],1920"another object": {21"comment": "These things can be nested, very useful."22}23},2425"silliness": [26{27"sources of potassium": ["bananas"]28},29[30[1, 0, 0, 0],31[0, 1, 0, 0],32[0, 0, 1, "neo"],33[0, 0, 0, 1]34]35],3637"alternative style": {38"comment": "check this out!"39, "comma position": "doesn't matter - as long as its before the value, then its valid"40, "another comment": "how nice"41},4243"that was short": "And, you're done. You now know everything JSON has to offer."44}454647