int main(){
cout<<"Loading";
Sleep(100);
cout<<".";
Sleep(100);
cout<<".";
Sleep(100);
cout<<".";
this will output: "Loading [delay] . [delay] . [delay] ."
using my mac, however, when i try the same type of code all that outputs is:
"[delay] Loading..." the initial delay is pretty long so the sleep() commands are stacking. Can anyone help me so that my output has delays similar to that of windows?