occlum/test/hello_world/main.c
Tate, Hongliang Tian a2b62891cc Add file I/O test
2019-02-16 16:24:08 +08:00

11 lines
155 B
C

#include <unistd.h>
#include <string.h>
#include <stdio.h>
static const char* msg = "Hello World\n";
int main() {
printf("%s", msg);
return 0;
}