aboutsummaryrefslogtreecommitdiffstats
path: root/hello-world.c
blob: da7675c152a355063ccf0b3bf593618649213b2e (plain)
1
2
3
4
5
6
7
8
// I was originally ashamed of putting this here, But this is a "c-stuff" folder after all.
// Don't always expect advanced stuff.
#include <stdio.h>

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