home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / RXCALC.ZIP / DATATYPE.CAL next >
Text File  |  1991-05-15  |  183b  |  4 lines

  1. /* Validate a Rexx whole number */
  2. parse arg string, operation            /* get the number             */
  3. return datatype(string, operation)     /* return the validation      */
  4.