Function comments -- Example
nint Max(int x, int y); // function declaration 
n
nint Max(int x, int y)
n /* Purpose: computer the maximum of two integers
n      Receives: x, y – two integers
n      Returns: the larger of the two inputs
n */
n {
n if (x > y)  return x;
n else     return y;
n }
n