]> gitweb.factorcode.org Git - factor.git/blob - basis/json/reader/reader-docs.factor
Merge branch 'master' into experimental
[factor.git] / basis / json / reader / reader-docs.factor
1 ! Copyright (C) 2006 Chris Double.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax ;
4 IN: json.reader
5
6 HELP: json> "( string -- object )"
7 { $values { "string" "a string in JSON format" } { "object" "yhe object deserialized from the JSON string" } }
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." } ;