factor/core/handbook/handbook.facts

55 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

USING: alien errors generic hashtables help inference tools
2006-08-01 17:41:10 -04:00
io-internals io libc math-internals modules namespaces parser
prettyprint queues sequences sequences-internals test words
kernel generic ;
2006-01-13 02:38:57 -05:00
ARTICLE: "handbook" "Factor documentation"
2006-03-28 23:31:45 -05:00
{ $subsection "changes" }
"If you are new to Factor, please read the cookbook first."
{ $subsection "cookbook" }
{ $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" }
{ $subsection "streams" }
2006-01-19 18:15:37 -05:00
{ $subsection "parser" }
{ $subsection "prettyprint" }
2006-06-12 03:21:08 -04:00
{ $subsection "alien" }
{ $heading "Environment reference" }
{ $subsection "cli" }
{ $subsection "tools" }
2006-10-26 00:06:25 -04:00
{ $subsection "modules" }
{ $subsection "help" }
2006-08-18 18:47:41 -04:00
{ $subsection "inference" }
{ $subsection "compiler" }
2006-09-19 02:30:21 -04:00
{ $heading "Graphical user interface" }
{ $subsection "ui-tools" }
{ $subsection "gadgets" }
2006-10-21 02:56:41 -04:00
{ $heading "Currently-loaded contributed modules" }
{ $outliner [ modules-help ] }
2006-06-12 03:21:08 -04:00
{ $heading "Index" }
{ $subsection "article-index" }
2006-08-01 17:35:00 -04:00
{ $subsection "error-index" }
2006-06-12 03:21:08 -04:00
{ $subsection "type-index" }
{ $subsection "class-index" }
{ $subsection "primitive-index" } ;
2006-06-12 03:21:08 -04:00
ARTICLE: "article-index" "Article index"
{ $outliner [ articles get hash-keys ] } ;
ARTICLE: "primitive-index" "Primitive index"
{ $outliner [ all-words [ primitive? ] subset ] } ;
2006-08-01 17:56:20 -04:00
ARTICLE: "error-index" "Error index"
2006-12-17 16:28:41 -05:00
{ $outliner [ all-errors ] } ;
2006-08-01 17:35:00 -04:00
2006-06-12 03:21:08 -04:00
ARTICLE: "type-index" "Type index"
{ $outliner [ builtins get [ ] subset ] } ;
ARTICLE: "class-index" "Class index"
{ $outliner [ classes ] } ;