# [X分鐘速成Y](http://learnxinyminutes.com/)
## 其中 Y=json
源代碼下載:?[learnjson-cn.json](http://learnxinyminutes.com/docs/files/learnjson-cn.json)
因為JSON是一個極其簡單的數據交換形式,這個最有可能將會是曾經最簡單 的Learn X in Y Minutes。
最純正形式的JSON沒有實際的注解,但是大多數解析器將會 接受C-風格(//, /* */)的注解。為了這個目的,但是, 一切都將會是100%有效的JSON。幸虧,它是不言自明的。
~~~
{
"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 now know everything JSON has to offer."
}
~~~