occlum/demo/hello_cc/hello_world.cc

7 lines
95 B
C++

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