summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/win32hello/app.cpp
blob: 10b02750e07382b75eeb539b21bf15c4ca82a80d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <iostream>
#include <cstdlib>

using namespace std;

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

  return EXIT_SUCCESS;
}