main.c 130 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 #include <stdio.h> int main() { while (1) { sleep(1); // Set a breakpoint here printf("I slept\n"); } return 0; }