home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
400-499
/
ff445.lzh
/
TurboText
/
Rexx
/
CountWords.ttx
< prev
next >
Wrap
Text File
|
1991-01-24
|
405b
|
27 lines
/** $VER: CountWords.ttx Demo 1.0 (26.12.90)
**
** Count the number of words in the document
**
** Written by Martin Taillefer
**/
OPTIONS RESULTS
SetDisplayLock ON
SetBookmark 0
SetStatusBar TEMPORARY "Counting..."
count = 0
MoveSOF
DO UNTIL RC ~= 0
MoveNextWord
count = count + 1
END
SetStatusBar "Counted " || count || " words"
MoveBookmark 0
SetDisplayLock OFF