home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / RXCALC.ZIP / DIVIDE.CAL < prev    next >
Text File  |  1991-04-23  |  485b  |  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.