home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / wp_dtp / ispell.lha / irexxspelltest.rexx < prev    next >
OS/2 REXX Batch file  |  1991-02-08  |  571b  |  26 lines

  1. /* 
  2.  *  Test Program for ARexx server mode of ISpell
  3.  *  Requires ISpell version 2.1ljr with ARexx Server mode.
  4.  *  Started: 11/6/89
  5.  *  Last Update: LJR  Sun Jun 03 21:29:40 1990
  6.  *
  7.  *  Copyright (C) 1989,1990  Loren J. Rittle
  8.  *  Use as you will, just document your changes and keep my copyright
  9.  *  notice intact.
  10.  */
  11. options results
  12. if pos('IRexxSpell',(show(ports))) = 0 then do
  13.     'runback ispell -r >null: <null:'
  14.     waitforport 'IRexxSpell'
  15. end
  16. address 'IRexxSpell' 
  17. version
  18. say result
  19. check    "cat"
  20. say result
  21. check    "\whitt"
  22. say result
  23. check    "whitt"
  24. say result
  25. 'exit'
  26.