summaryrefslogtreecommitdiff
path: root/c/hello_world.c
blob: 648e6b082b51dc8ec7f13b953ed6755a53bbeeb8 (plain) (blame)
1
2
3
4
5
6
#include <stdio.h>

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