asterinas/regression/apps/hello_c/hello.c

6 lines
91 B
C
Raw Normal View History

2022-09-13 07:56:03 +00:00
#include <stdio.h>
int main() {
2022-09-16 03:14:46 +00:00
printf("hello world from hello_c!\n");
2022-09-13 07:56:03 +00:00
return 0;
}