xref: /DragonOS/user/apps/riscv_init/main.c (revision 1df85daf8f1b4426fe09d489d815997cdf989a87)
1 #include <stdio.h>
2 
3 int main() {
4   while(1){
5     printf("\033[43;37mHello, World!\033[0m\n");
6     sleep(1);
7   }
8   return 0;
9 }