summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/chello/main.c
blob: 3ac8c330c6712099bcc78c1b53269f27c6397c5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%{C_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;
}