Please send questions to st10@humboldt.edu .
#include <iostream>
#include "print2.h"
using namespace std;

// oh, just a quick'n'dirty test of print2...
//
// by: Sharon M. Tuttle
// last modified: 10-28-03

int main()
{
    int bottleNum;

    // test calls to beer verse function
    bottleNum = 89;
    print2(bottleNum);
    cout << endl << "bottlenNum after call: " 
         << bottleNum << endl;

    bottleNum = 1;
    print2(bottleNum);
    cout << endl << "bottlenNum after call: " 
         << bottleNum << endl;
    
    // MUST have something you can SET as a pass-by-reference
    //    argument --- this fails!
    //print2(62);

    return 0;
}