Linux/Code/hello.c
2025-04-28 16:58:56 +08:00

8 lines
79 B
C

#include <stdio.h>
int main()
{
printf("hello world\n");
return 0;
}