home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
495a.lha
/
ISpell_v3.1ljr
/
rexx
/
irexxspelltest.rexx
next >
Wrap
OS/2 REXX Batch file
|
1991-04-06
|
571b
|
26 lines
/*
* Test Program for ARexx server mode of ISpell
* Requires ISpell version 2.1ljr with ARexx Server mode.
* Started: 11/6/89
* Last Update: LJR Sun Jun 03 21:29:40 1990
*
* Copyright (C) 1989,1990 Loren J. Rittle
* Use as you will, just document your changes and keep my copyright
* notice intact.
*/
options results
if pos('IRexxSpell',(show(ports))) = 0 then do
'runback ispell -r >null: <null:'
waitforport 'IRexxSpell'
end
address 'IRexxSpell'
version
say result
check "cat"
say result
check "\whitt"
say result
check "whitt"
say result
'exit'