xref: /DragonOS/user/apps/riscv_init/main.c (revision a8753f8fffb992e4d3bbd21eda431081b395af6b)
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 }