1 2 3 4 5 6 7 8 9 10 11 12
#include <stdint.h> #include <stdio.h> #include <time.h> void main(void) { printf("We did it ma!\n"); while(1) { sleep(1); printf("1000ms tick!\n"); } }