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

int main (int argc, char** argv)
{
	puts ("Hello World!");
	return 0;
}