home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / RXCALC.ZIP / WHOLE.CAL < prev   
Text File  |  1991-04-23  |  228b  |  5 lines

  1. /* Validate a Rexx whole number */
  2. parse arg number                       /* get the number             */
  3. call lineout 'd:\rexxcalc\calc.log', number
  4. return datatype(number, 'Whole')       /* return the validation      */
  5.