Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
created by st10 at Mon Apr 30 10:45:36 PDT 2007
--------------------------------------------------*/
#include <iostream>
#include <cmath>
using namespace std;


/*--------------------------------------------------
 Contract: looky : int -> void
 Purpose: print to the screen the value <size>, labeled and
         on its own line.

 Examples: looky(3) will cause:
size: 3
          ...to be printed to the screen.
--------------------------------------------------*/
void looky (int size)
{
    cout << "size: " << size << endl;
}