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