toolkit/func/common/files/hello.c

6 lines
68 B
C
Raw Normal View History

2021-07-05 06:50:25 +00:00
#include <stdio.h>
int main() {
printf("Hello!\n");
return 0;
}