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

10 lines
153 B
C

#include <unistd.h>
#include <string.h>
static const char* msg = "Hello World\n";
int main(void) {
write(1, msg, strlen(msg) + 1);
return 0;
}