home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv6.zip / vac22os2 / ibmcobol / samples / toolkit / rexx / api / rexxcalc / divide.cal < prev    next >
Text File  |  1996-11-19  |  484b  |  10 lines

  1. /* Rexx Calculator division processor */
  2. parse arg left, right                  /* get the two operands       */
  3. numeric digits CalcPrecision()         /* set current precision      */
  4. numeric form value CalcForm()          /* set current form           */
  5.  
  6. if (right = 0)                         /* bad division?              */
  7.   then return 'Error'                  /* return error indicator     */
  8.  
  9. return left / right                    /* return result              */
  10.