summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/cmakesimplec/main.c
blob: 296f932465e5a790c138822a2531ee8e7de9f489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#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;
}