JSON: Difference between revisions

270 bytes added ,  10 years ago
no edit summary
No edit summary
Line 1,927:
</lang>
 
=={{header|Smalltalk}}==
Use the NeoJSON library: [http://smalltalkhub.com/#!/~SvenVanCaekenberghe/Neo NeoJSON]
<lang smalltalk>
NeoJSONReader fromString: '{ "foo": 1, "bar": [10, "apples"] }'.
</lang>
 
Output:
<pre>
a Dictionary('bar'->#(10 'apples') 'foo'->1 )
</pre>
 
=={{header|Tcl}}==
Anonymous user