|
Command |
Stack Diagram |
Description |
|---|---|---|
| ' name |
( -- xt ) |
Find the named word in the dictionary. Returns the execution token. Use outside definitions. |
| ['] name |
( -- xt ) |
Similar to ' but is used either inside or outside definitions. |
| .calls |
( xt -- ) |
Display a list of all words that call the word whose execution token is xt. |
| $find |
( str len -- str len false | xt true ) |
Search for word named by str,len. If found, leave xt and true on stack. If not found, leave name string and false on stack. |
| find |
( pstr -- pstr false | xt n ) |
Search for word named by pstr. If found, leave xt and true on stack. If not found, leave name string and false on stack. (Recommend using $find to avoid use of packed string.) |
| see thisword |
( -- ) |
Decompile the named command. |
| (see) |
( xt -- ) |
Decompile the word indicated by the execution token. |
| sift |
( pstr -- ) |
Display names of all dictionary entries containing the string pointed to by pstr. |
| sifting ccc |
( -- ) |
Display names of all dictionary entries containing the sequence of characters. ccc contains no spaces. |
| words |
( -- ) |
Display all visible words in the dictionary. |