JSON: Difference between revisions

Content added Content deleted
No edit summary
Line 1,927: Line 1,927:
</lang>
</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}}==
=={{header|Tcl}}==