summaryrefslogtreecommitdiffstats
path: root/src/main.c
blob: 380a6155efa2770ac609aa1278956347b8a15455 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <stdlib.h>

int
main(int argc, char *argv[])
{
	puts("Hello, world!");
	return EXIT_SUCCESS;
}