Files
asterinas/regression/apps/hello_c/hello.c
2023-04-10 14:49:39 +08:00

6 lines
91 B
C

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