occlum/demos/hello_cc/hello_world.cc
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
95 B
C++

#include <iostream>
int main() {
std::cout << "Hello World" << std::endl;
return 0;
}