json decode - part-cw/lambdanative GitHub Wiki
(json-decode str)
Decodes a JSON string into list representation.
Parameter | Description |
---|---|
str | String to be decoded |
Example
> (json-decode "{ \"test\": true }")
(("test" . #t))
Decodes a JSON string into list representation.
Parameter | Description |
---|---|
str | String to be decoded |
> (json-decode "{ \"test\": true }")
(("test" . #t))