llvm-project/clang/utils/perf-training/cxx/hello_world.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
169 B
C++
Raw Normal View History

// RUN: %clang_cpp -c %s
// RUN: %clang_cpp_skip_driver -Wall -pedantic -c %s
#include <iostream>
int main(int, char**) {
std::cout << "Hello, World!";
return 0;
}