Files
ci-emsdk/bazel/hello-world/hello-world.cc
2020-09-10 18:42:46 -07:00

7 lines
113 B
C++

#include <iostream>
int main(int argc, char** argv) {
std::cout << "hello world!" << std::endl;
return 0;
}