occlum/test/cout/main.cc
2019-06-01 11:22:04 +08:00

6 lines
87 B
C++

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