summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/qmakesimple/main.cpp
blob: e91f9f228577c3946327ead92e2ce8d7616249b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%{CPP_TEMPLATE}

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

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
  printf("Hello, world!\n");

  return EXIT_SUCCESS;
}