Duh! I should have known! it was trying to call the function that doesn't exist until after that line!


Code:
void main()
{
    cout << "I am MrCode,";
    cout << "hear me roar!";
    system("PAUSE");
}