aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: 4e72b6ed4b871232f9675b8eeefff2b17094faf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * blogc: A blog compiler.
 * Copyright (C) 2015 Rafael G. Martins <rafael@rafaelmartins.eng.br>
 *
 * This program can be distributed under the terms of the BSD License.
 * See the file COPYING.
 */

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

#include <stdio.h>

#include "source-parser.h"
#include "template-parser.h"
#include <string.h>


int
main(int argc, char **argv)
{
    printf("Hello, World!\n");
    return 0;
}