helloworld.cpp
/* 
Josh Santomieri
Santomieri Systems
http://www.santsys.com

09/26/2002
*/

#include 

int main(int argc, char *argv[])
{
	char cMyStr[] = "hello World";

	cout << cMyStr;
	return 0;
}