home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / utility / 252 / gemsrc / math.def < prev    next >
Encoding:
Modula Definition  |  1988-02-13  |  384 b   |  20 lines

  1. DEFINITION MODULE Math;
  2.  
  3.    (* This module defines various mathematical functions. *)
  4.  
  5.  
  6.    PROCEDURE Max ( Left  : INTEGER;
  7.                    Right : INTEGER ) : INTEGER;
  8.  
  9.       (* Return the maximum of two values. *)
  10.  
  11.  
  12.    PROCEDURE Min ( Left  : INTEGER;
  13.                    Right : INTEGER ) : INTEGER;
  14.  
  15.       (* Return the minimum of two values. *)
  16.  
  17.  
  18. END Math.
  19.  
  20.