home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pmos2002.zip / DEF / CALCULAT.DEF next >
Text File  |  1996-09-17  |  1KB  |  22 lines

  1. DEFINITION MODULE Calculator;
  2.  
  3.         (****************************************************************)
  4.         (*                                                              *)
  5.         (*                      Simple calculator                       *)
  6.         (*                                                              *)
  7.         (*  Programmer:         P. Moylan                               *)
  8.         (*  Last edited:        1 September 1993                        *)
  9.         (*  Status:             OK                                      *)
  10.         (*                                                              *)
  11.         (****************************************************************)
  12.  
  13. PROCEDURE RunCalculator;
  14.  
  15.     (* Displays a calculator window on the screen; this can be operated *)
  16.     (* from the numeric keypad.  On exit, the calculator window is      *)
  17.     (* closed.  However, calculation results are saved between          *)
  18.     (* invocations of this procedure.                                   *)
  19.  
  20. END Calculator.
  21.  
  22.