factor/library/help/syntax.factor

18 lines
435 B
Factor
Raw Normal View History

! Copyright (C) 2005 2006 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
2005-12-23 02:21:01 -05:00
IN: !syntax
USING: arrays help kernel parser sequences syntax words ;
: !HELP:
2006-08-15 21:23:05 -04:00
scan-word bootstrap-word dup set-word
dup location "help-loc" set-word-prop
[ >array set-word-help ] f ; parsing
2005-12-23 02:21:01 -05:00
: !ARTICLE:
2006-08-28 00:53:55 -04:00
location
2006-08-02 16:53:26 -04:00
[
2006-08-28 00:53:55 -04:00
swap >r >array [ first2 ] keep 2 tail r> <article>
2006-08-02 16:53:26 -04:00
add-article
2006-08-28 00:53:55 -04:00
]
f ; parsing