Please send questions to st10@humboldt.edu .
/*-----
  Contract: main: void -> int

  Purpose: testing program for the function looky
  
  Examples: if the user runs the program test_looky, the
            following should be written to the screen:
size: 13
size: 16
size: 27

  by: Sharon M. Tuttle
  last modified: 4-30-07
-----*/

#include <iostream>
#include "looky.h"
using namespace std;

int main()
{
    looky(13);
    looky(48 / 3);
  
    int value;
    value = 27;
    looky(value);

    return EXIT_SUCCESS;
}