I was recently messing around with c++ console programming. I was wondering if there was a way to make text appear on the console for a specific amount of time, then go to some more text. Essentially, I'm trying to create a timer object. Or if you're familiar with python, it would be something like
import timer
print "Hello World"
timer.sleep(2)
print "Hello Again World"
timer.sleep(2)
If someone could help me with this, I would appreciate it, thanks in advance.