factor/library/help/help.factor

17 lines
325 B
Factor
Raw Normal View History

2005-12-01 00:53:12 -05:00
IN: help
2006-01-06 02:04:42 -05:00
USING: arrays hashtables io kernel ;
2005-12-01 00:53:12 -05:00
2005-12-28 20:25:17 -05:00
: (help) ( topic -- )
default-style [
2005-12-31 20:51:58 -05:00
[ article-content print-element ] with-nesting* terpri*
] with-style ;
2005-12-01 00:53:12 -05:00
2005-12-28 20:25:17 -05:00
DEFER: $heading
2005-12-01 00:53:12 -05:00
2005-12-28 20:25:17 -05:00
: help ( topic -- )
dup article-title $heading (help) ;
: glossary ( name -- ) <term> help ;
2006-01-19 03:28:10 -05:00
: handbook ( -- ) "handbook" help ;