clang/tests/toolchains/hello.cpp

6 lines
100 B
C++
Raw Normal View History

2021-02-10 13:48:42 +00:00
#include <iostream>
int main(int argc, char **argv) {
std::cout << "Hello World\n";
return 0;
}