(index ("parser" 0))
(def (sig (procedure "(parser TEXT) => VALUE" (id parser))) (p "Parses a JSON text and returns a corresponding Scheme value. JSON vectors and objects are represented as Scheme vectors and alists, respectively. JSON numbers, booleans and strings are represented as Scheme numbers, booleans and strings.") (p "The JSON " (tt "null") " constant is represented as " (tt "'null") " list in Scheme."))
