Re: Review request for my JSON parsing implementation

2019-05-05 Thread Alexander Burger
On Sun, May 05, 2019 at 08:00:18AM -0700, C K Kashyap wrote: > : (scl 2) > -> 2 > : (parseJson "{\"a\": 10.1}") > -> (("a" . 1010)) > : (parseJson "{\"a\": 10}") > -> (("a" . 10)) > > Shouldn't 10 be scaled to 1000? Did I miss something here or is there > something I need to do so that all the num

Re: Review request for my JSON parsing implementation

2019-05-05 Thread C K Kashyap
Interesting ... for some reason, I believed that PicoLisp did not contain a json parser !!! - perhaps because, a search for json on https://picolisp.com/wiki/?Documentation takes me to the external repositories section :) pipe is awesome :) - I was looking for just that. It occurred to me that th