// backspace.cc P. Conrad  Fun with backspace
// We'll do this program if we have time...  10:37am

// we may also do fun with \r and \n   

#include <iostream>
using namespace std;

#include <unistd.h>


int main()
{
  cout << "I love cheese" << flush;

  sleep(5);

  cout << "\rNo, I'd really rather have a banana" << endl;

  return 0;

}

