#include <stdio.h>

//compile gcc hellow.c
//will produce file call a.out  out=.exe
//cant run directly since not in bin folder
//type ./a.out for it to run
//on windows make sure path to compiler set
//example set PATH=%PATH%;c:\MinGW\bin;
int main()
{
	printf("Hello World");
	return 0;
}

