tildefriends/deps/libuv/docs/code/cgi/tick.c

14 lines
208 B
C
Raw Normal View History

#include <stdio.h>
#include <unistd.h>
int main() {
int i;
for (i = 0; i < 10; i++) {
printf("tick\n");
fflush(stdout);
sleep(1);
}
printf("BOOM!\n");
return 0;
}