i have a loop

while(true)
{
cout<<".";
Sleep(60000);
}

which should print a period every minute. but i get nothing, even when i turn it down to 100 i get nothing. why?