home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1988-02-13 | 384 b | 20 lines |
- DEFINITION MODULE Math;
-
- (* This module defines various mathematical functions. *)
-
-
- PROCEDURE Max ( Left : INTEGER;
- Right : INTEGER ) : INTEGER;
-
- (* Return the maximum of two values. *)
-
-
- PROCEDURE Min ( Left : INTEGER;
- Right : INTEGER ) : INTEGER;
-
- (* Return the minimum of two values. *)
-
-
- END Math.
-
-