11.30.06

Funerals++

Posted in General, Thoughts at 6:41 pm by Nick

// recent events in C++

#include < iostream >

using namespace std;

int main( )
{
Life *NicksLife = new Life( 1, 3 ); // visitations, funerals

NicksLife->visitations++;
NicksLife->funerals++;

NicksLife->MostHatedFood = Meat_Cheese_Trays;
NicksLife->CurrentBand = Skillet; // Comatose is wonderful, thanks Dwayne
NicksLife->DesiredActivitiy = Sleep;

NicksLife->Days_Until_Return_To_CF = random( 1, 8 ); // don’t know yet

return EXIT_SUCCESS;
}

Leave a Comment