22 lines
		
	
	
		
			744 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			744 B
		
	
	
	
		
			Factor
		
	
	
! Copyright (C) 2006 Chris Double.
 | 
						|
! See http://factorcode.org/license.txt for BSD license.
 | 
						|
USING: help.markup help.syntax ;
 | 
						|
IN: json.writer
 | 
						|
 | 
						|
HELP: >json
 | 
						|
{ $values { "obj" "an object" } { "string" "the object converted to JSON format" } }
 | 
						|
{ $description "Serializes the object into a JSON formatted string." } 
 | 
						|
{ $see-also json-print } ;
 | 
						|
 | 
						|
HELP: json-print
 | 
						|
{ $values { "obj" "an object" } }
 | 
						|
{ $description "Serializes the object into a JSON formatted string and outputs it to the standard output stream." } 
 | 
						|
{ $see-also >json } ;
 | 
						|
 | 
						|
ARTICLE: "json.writer" "JSON writer"
 | 
						|
"The " { $vocab-link "json.writer" } " vocabulary defines words for converting objects to JSON format."
 | 
						|
{ $subsection >json }
 | 
						|
{ $subsection json-print } ;
 | 
						|
 | 
						|
ABOUT: "json.writer"
 |