Files
ci-emsdk/bazel/hello-world/hello-world.cc

7 lines
113 B
C++
Raw Normal View History

2020-09-10 21:42:46 -04:00
#include <iostream>
int main(int argc, char** argv) {
std::cout << "hello world!" << std::endl;
return 0;
}