ba816665bd
FossilOrigin-Name: 7483d4c246232b03509d41e9dd9d0e9532a8173fdba60f86d9c7c632752190c5
10 lines
255 B
Forth
Executable file
10 lines
255 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 ;
|
|
[ dup d:source fetch n:zero? [ ,dt tab ,name nl ] if drop ] d:for-each
|
|
~~~
|