I was wondering if it is possible to simulate a typewriter effect (Meaning pause inbetween each character.) but from the cout global class.
For example
cout << "Hi, this is a cow." << endl;
would have the same effect has
typeWriter("Hi, this is a cow.\n");
Is it possible to change the global class of cout to something similar to the typeWriter function?
I know I could just change all the cout to typeWriter("xxx"), but that would take a long time (a couple hours of time).