fd50adfb70
FossilOrigin-Name: ef89aa704a826e2edd4ba3441105cb6f0bcc02a9b8b8f7f431a44e4d09cc0510
11 lines
283 B
Forth
Executable file
11 lines
283 B
Forth
Executable file
#!/usr/bin/env retro
|
|
|
|
This is a quick program to display the word names and header info
|
|
for words with an empty `d:source` field.
|
|
|
|
~~~
|
|
:,name dup d:name s:put ;
|
|
:,dt dup n:put ;
|
|
:-source? (d-df) dup d:source fetch n:zero? ;
|
|
[ -source? [ ,dt tab ,name nl ] if drop ] d:for-each
|
|
~~~
|