mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 18:26:48 +00:00
9 lines
125 B
C
9 lines
125 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
while(1){
|
|
printf("\033[43;37mHello, World!\033[0m\n");
|
|
sleep(1);
|
|
}
|
|
return 0;
|
|
} |