diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-04-15 12:56:54 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-04-15 12:56:54 -0300 |
commit | 0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b (patch) | |
tree | 212c4d2ac7e269cc9f03f2240e36f865d4ce2493 /src/main.c | |
parent | a8e0fedb3f12ed1ceda7879944606c8e1e7d4a08 (diff) | |
download | blogc-0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b.tar.gz blogc-0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b.tar.bz2 blogc-0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b.zip |
initial structure
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..f989f62 --- /dev/null +++ b/src/main.c @@ -0,0 +1,21 @@ +/* + * 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> + + +int +main(int argc, char **argv) +{ + printf("Hello, World!\n"); + return 0; +} |