]> gitweb.factorcode.org Git - factor.git/blob - basis/json/writer/writer-docs.factor
merge project-euler.factor
[factor.git] / basis / json / writer / writer-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.writer
5
6 HELP: >json
7 { $values { "obj" "an object" } { "string" "the object converted to JSON format" } }
8 { $description "Serializes the object into a JSON formatted string." } 
9 { $see-also json-print } ;
10
11 HELP: json-print
12 { $values { "obj" "an object" } }
13 { $description "Serializes the object into a JSON formatted string and outputs it to the standard output stream." } 
14 { $see-also >json } ;
15
16 ARTICLE: "json.writer" "JSON writer"
17 "The " { $vocab-link "json.writer" } " vocabulary defines words for converting objects to JSON format."
18 { $subsections
19     >json
20     json-print
21 } ;
22
23 ABOUT: "json.writer"