12 lines
170 B
C
12 lines
170 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <stdbool.h>
|
||
|
|
#include <unistd.h>
|
||
|
|
|
||
|
|
void app_main(void)
|
||
|
|
{
|
||
|
|
while (true) {
|
||
|
|
printf("Hello from app_main!\n");
|
||
|
|
sleep(1);
|
||
|
|
}
|
||
|
|
}
|