occlum/test/hello_world/main.c
2019-02-16 16:24:08 +08:00

11 lines
163 B
C

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