occlum/demos/hello_c/hello_world.c
Tate, Hongliang Tian f9376ec4ba Polish the demos
1. Rename demo/ to demos/
2. Add demos/README.md
2019-10-19 02:04:13 +00:00

7 lines
78 B
C

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