summaryrefslogtreecommitdiff
path: root/helloworld.c
blob: ef66efbae4e7ac28b6ddcceecb84fbd91e6e2ebc (plain)
1
2
3
4
5
6
#include <stdio.h>

int main() {
	printf("Hello, World!\n");
	return 0;
}