Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so dont bother with any of their useless mail servers here and just use oauth login instead. Thank the nice Russians for causing that. :)
Paste
Pasted as C by neo ( 5 years ago )
#include<stdio.h>
#include<time.h>
int main()
{
struct timespec t;
t.tv_sec = 0;
t.tv_nsec = 666666L;
while (1)
{
for(int i = 1; i<=50; i++)
{
printf("o");
printf("\b ");
nanosleep(&t, NULL);
}
for(int i = 1; i<=50; i++)
printf("\b");
}
return 0;
}
Revise this Paste
Parent: 115773