summaryrefslogtreecommitdiffstats
path: root/hello-c/hello.c
blob: f12c0e81ab0d6fd4bc0bb5e8ce25cd6c2ddbc329 (plain)
1
2
3
4
5
6
7
#include <stdio.h>

int main(void)
{
	printf("hello, world!\n");
	return 0;
}