www.digitalmars.com         C & C++   DMDScript  

c++ - new to digital mars

reply john <johnzer hotmail.com> writes:
i just downloaded the compiler can someone talk me through the
steps to creating the "Hello World" program? the website provides
no help
Aug 12 2007
next sibling parent Walter Bright <newshound1 digitalmars.com> writes:
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.
Aug 12 2007
prev sibling parent =?UTF-8?B?RGllZ28gU8OhbmNoZXo=?= <diegos intersoft.com.ar> writes:
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----------!
Aug 30 2007