|  |  D.6.14.8 Max Procedure from libraryqhmoduli.lib(see  qhmoduli_lib).
 
Example:Usage:
Max(data); intvec/list of integers
Purpose:
find the maximal integer contained in 'data'
Return:
list
Assume:
'data' contains only integers and is not empty
 |  | LIB "qhmoduli.lib";
Max(list(1,2,3));
==> 3
 | 
 
 |