RosettaCodeData/Task/JSON/Maple/json.maple
2023-07-01 13:44:08 -04:00

4 lines
223 B
Text

> JSON:-ParseString("[{\"tree\": \"maple\", \"count\": 21}]");
[table(["tree" = "maple", "count" = 21])]
> JSON:-ToString( [table(["tree" = "maple", "count" = 21])] );
"[{\"count\": 21, \"tree\": \"maple\"}]"