1 ! Copyright (C) 2006 Chris Double.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax ;
7 { $values { "string" "a string in JSON format" } { "object" "a deserialized object" } }
8 { $description "Deserializes the JSON formatted string into a Factor object. JSON objects are converted to Factor hashtables. All other JSON objects convert to their obvious Factor equivalents." } ;
10 ARTICLE: "json.reader" "JSON reader"
11 "The " { $vocab-link "json.reader" } " vocabulary defines a word for parsing strings in JSON format."
12 { $subsection json> } ;