summaryrefslogtreecommitdiffstats
path: root/helloworld.c
blob: 5d89a54ce1a1beaa9ad6dbb27f8504e08ee22b56 (plain) (blame)
1
2
3
4
int main() {
	write(1, "hello world", 12);
	exit(0);
}