aboutsummaryrefslogtreecommitdiff
path: root/amforth-6.5/common/lib/help.frt
blob: 45e877eadfc0c86244ee9a4582d9255580e09838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
\ small online help system

\ usage
\  help <word>
\ prints the stack effects and a short description 

wordlist constant help-wl

: help
    parse-name help-wl search-wordlist
    if execute then
;