summaryrefslogtreecommitdiff
path: root/c/hello-world.c
blob: 666b3d290f5d1e8f421c87da3c229228a2d6c721 (plain) (blame)
1
2
3
4
5
6
7
#include <stdio.h>

int main()
{
	puts("Hello, world!");
	return 0;
}