summaryrefslogtreecommitdiff
path: root/templates/cplusplus.cc
blob: bddbfd2595f16c7ff6fc0fc239070e8ebc61fbfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * template.cpp
 *
 * Patrick Simianer <p@simianer.de>
 * YYYY-MM-DD
 */

#include <iostream>

using namespace std;


int main(int argc, char const* argv[])
{
  cout << "Hello, World!" << endl;

  return 0;
}