sleepsh/main.c

10 lines
103 B
C
Raw Normal View History

2024-10-14 15:43:16 +03:00
#include <unistd.h>
int main() {
while (1) {
sleep(20);
write(1, "*", 1);
2024-10-14 15:43:16 +03:00
}
return 0;
}