JSON: Difference between revisions

Content added Content deleted
(→‎{{header|Julia}}: use import rather than require, triple-quoted string for nicer nested quotes)
Line 1,091:
The JSON module is installed by running Pkg_add("JSON").
<lang Julia>
julia> require("import JSON")
julia> JSON.parse("""{ \"blue\": [1,2], \"ocean\": \"water\" }""")
["ocean"=>"water","blue"=>{1,2}]