JSON
Description
Module that allows you to encode and decode JSON.
Import
(import "json")
Usage
(print $ decode $ encode 5)
Reference
(encode <value:data>)
-- encodesdata
to JSON (Of course, it cannot store functions and macroses) and returns string.(decode <string:json-data>)
-- decodes JSON and returns value (All numbers become floats!)