JSON: Difference between revisions

5 bytes removed ,  2 years ago
m
Line 1,604:
Create a new Json data structure (here a Json pair), and insert it into the previous Json object. Print it again.
<pre>
j{ "another":"esc\"ap\u20ACed" }j 1 j :insertadd j :.
</pre>
Prints the modified JSON:
Line 1,610:
{
"value": 10,
"another": "esc"ap€ed",
"flag": false,
"array": [ 1, 2, 3]
"another": "esc"ap€ed",
}
 
Line 1,620:
j json>$ :.
</pre>
{"value":10,"another":"esc\"ap\u20ACed","flag":false,"array":[1,2,3],"another":"esc\"ap\u20ACed"}
 
=={{header|Fortran}}==