summaryrefslogtreecommitdiff
path: root/cpp-hello-world/src/main.cpp
blob: 769877eddaa8bd4cbc19cc1c7fa4821d00460b2d (plain) (blame)
1
2
3
4
5
6
#include <iostream>
using namespace std;

int main() {
  std::cout << "Hello, World!" << std::endl;
}