Documentation menu

Standard Library

JSON

Always available — pairs naturally with the Net package's HTTP responses, and with Mako3D.save_scene/load_scene.

New to coding?

Copy the examples exactly first. Run them. Then change one number or word and run them again. You are not expected to memorize the command lists.

1

Encode & decode

Try this code
s = json_encode({"name": "Robin", "tags": [1, 2, 3]});
d = json_decode(s);
d["name"]   // "Robin"