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