2006-06-12 03:21:08 -04:00
|
|
|
USING: generic hashtables help inspector namespaces parser
|
|
|
|
|
prettyprint sequences words ;
|
2006-01-13 02:38:57 -05:00
|
|
|
|
|
|
|
|
ARTICLE: "handbook" "Factor documentation"
|
2006-03-28 23:31:45 -05:00
|
|
|
{ $subsection "changes" }
|
2006-06-06 21:29:09 -04:00
|
|
|
{ $heading "Survival guide" }
|
|
|
|
|
{ $list
|
2006-06-09 21:55:37 -04:00
|
|
|
{ "Load source files using " { $link run-file } ":"
|
|
|
|
|
{ $code "\"contrib/httpd/load.factor\" run-file" } }
|
2006-06-06 21:29:09 -04:00
|
|
|
{ { $link .s } " prints the contents of the stack." }
|
|
|
|
|
{ { $link . } " prints the object at the top of the stack." }
|
|
|
|
|
}
|
|
|
|
|
{ $heading "Cookbook" }
|
|
|
|
|
{ $subsection "cookbook-syntax" }
|
|
|
|
|
{ $subsection "cookbook-colon-defs" }
|
|
|
|
|
{ $subsection "cookbook-combinators" }
|
|
|
|
|
{ $subsection "cookbook-variables" }
|
|
|
|
|
{ $subsection "cookbook-vocabs" }
|
2006-06-17 02:21:01 -04:00
|
|
|
{ $subsection "cookbook-sources" }
|
2006-06-06 21:29:09 -04:00
|
|
|
{ $subsection "cookbook-io" }
|
2006-06-17 02:10:28 -04:00
|
|
|
{ $heading "Language reference" }
|
2006-06-08 18:06:38 -04:00
|
|
|
{ $subsection "conventions" }
|
2006-01-13 02:38:57 -05:00
|
|
|
{ $subsection "syntax" }
|
|
|
|
|
{ $subsection "dataflow" }
|
|
|
|
|
{ $subsection "words" }
|
|
|
|
|
{ $subsection "objects" }
|
|
|
|
|
{ $subsection "math" }
|
|
|
|
|
{ $subsection "collections" }
|
2006-01-19 03:03:32 -05:00
|
|
|
{ $subsection "streams" }
|
2006-01-19 18:15:37 -05:00
|
|
|
{ $subsection "parser" }
|
|
|
|
|
{ $subsection "prettyprint" }
|
2006-06-12 03:21:08 -04:00
|
|
|
{ $subsection "alien" }
|
2006-06-17 02:10:28 -04:00
|
|
|
{ $heading "Environment reference" }
|
|
|
|
|
{ $subsection "tools" }
|
|
|
|
|
{ $subsection "help" }
|
2006-06-12 03:21:08 -04:00
|
|
|
{ $heading "Index" }
|
|
|
|
|
{ $subsection "article-index" }
|
|
|
|
|
{ $subsection "primitive-index" }
|
|
|
|
|
{ $subsection "type-index" }
|
|
|
|
|
{ $subsection "class-index" } ;
|
|
|
|
|
|
|
|
|
|
ARTICLE: "article-index" "Article index"
|
|
|
|
|
{ $outliner [ articles get hash-keys ] } ;
|
|
|
|
|
|
|
|
|
|
ARTICLE: "primitive-index" "Primitive index"
|
|
|
|
|
{ $outliner [ all-words [ primitive? ] subset ] } ;
|
|
|
|
|
|
|
|
|
|
ARTICLE: "type-index" "Type index"
|
|
|
|
|
{ $outliner [ builtins get [ ] subset ] } ;
|
|
|
|
|
|
|
|
|
|
ARTICLE: "class-index" "Class index"
|
2006-06-29 00:25:35 -04:00
|
|
|
{ $outliner [ classes ] } ;
|