home *** CD-ROM | disk | FTP | other *** search
/ Business Shareware / Business Shareware.iso / start / wordproc / me_cd25 / ascii.mut < prev    next >
Encoding:
Text File  |  1992-11-09  |  238 b   |  16 lines

  1. (include me2.h)
  2. (include mod.mut)
  3.  
  4. (defun
  5.   all-the-ASCII-characters
  6.   {
  7.     (int j)
  8.  
  9.     (for (j 1) (< j 256) (+= j 1)
  10.     {
  11.       (insert-text (convert-to CHARACTER j))
  12.       (if (== 0 (mod j 32)) (newline))
  13.     })
  14.   }
  15. )
  16.