summaryrefslogtreecommitdiffstats
path: root/utils/perf-training/cxx/hello_world.cpp
blob: 66e00d00d26140aca53a0e853c562ba3bcfc7b91 (plain)
1
2
3
4
5
6
7
// RUN: %clang_cpp -c %s
#include <iostream>

int main(int, char**) {
  std::cout << "Hello, World!";
  return 0;
}
OpenPOWER on IntegriCloud