Dec 11, 2005 00:17
#include
using namespace std;
void whatIReallyWantToSay ();
int main ()
{
cout<<"Hey all, So it's about 12 in the AM and I'm studying for my PIC 10A final as you may have already guessed.\n";
cout<<"I'll make this quick and save everyone the pain of enduring this ridiculous post.\n";
whatIReallyWantToSay ();
return 0;
}
void whatIReallyWantToSay ()
{
cout<<"Ok, I hope everyone studies a lot and does well on their finals. Don't be a slacker like I used to be, it doesn't help any. Hopefully I'll think of some clever things to say and post them later, most likely after finals. Good Luck and take care.\n";
}