Please send questions to st10@humboldt.edu .
/*--------------------------------------------------
created by smtuttle at Tue Oct 26 14:35:37 PDT 2010
--------------------------------------------------*/
#include <iostream>
#include <cmath>
using namespace std;


/*--------------------------------------------------
 Contract: playing : int -> int
 Purpose: to demonstrate assignment

 Examples: playing(10) == 15
--------------------------------------------------*/

int playing(int value)
{
    int look_at_me;

    look_at_me = 3;
    look_at_me = 5.6;

    return value + look_at_me;
}