Thread overview
new to digital mars
Aug 12, 2007
john
Aug 12, 2007
Walter Bright
Aug 30, 2007
Diego Sánchez
August 12, 2007
i just downloaded the compiler can someone talk me through the steps to creating the "Hello World" program? the website provides no help
August 12, 2007
john wrote:
> i just downloaded the compiler can someone talk me through the
> steps to creating the "Hello World" program? the website provides
> no help

Unzip the compiler; the readme is in the \dm directory.
August 30, 2007
john wrote:
> i just downloaded the compiler can someone talk me through the
> steps to creating the "Hello World" program? the website provides
> no help
Create file: hello.cc

!------ hello.cc began -------!

#include <iostream>

int main( int argc, char** argv ) {

	std::cout << "Hello Word!!!" << std::endl ;

	return 0 ;
}

!-------- hello.cc end----------!