No description, website, or topics provided.
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
README.md
minimal-json.lisp

README.md

CL-USER> {"literal": "json syntax", "pretty": {"cool": "I think."}}
{"literal": "json syntax", "pretty": {"cool": "I think."}}
CL-USER> (setf *eg* {"literal": "json syntax", "pretty": {"cool": "I think."}})
{"literal": "json syntax", "pretty": {"cool": "I think."}}
CL-USER> (gethash "literal" *eg*)
"json syntax"
T
CL-USER> (gethash "pretty" *eg*)
{"cool": "I think."}
T
CL-USER> (gethash "cool" (gethash "pretty" *eg*))
"I think."
T
CL-USER> { "abc": 1, "def": {"x": "y", "m": (1 2 3 raw lisp oh my) } }
{"abc": 1, "def": {"x": "y", "m": (1 2 3 RAW LISP OH MY)}}
CL-USER>