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

int main() {
	printf("Hello World");
	getchar();
}