c++ - new to digital mars
- john <johnzer hotmail.com> Aug 12 2007
- Walter Bright <newshound1 digitalmars.com> Aug 12 2007
- =?UTF-8?B?RGllZ28gU8OhbmNoZXo=?= <diegos intersoft.com.ar> Aug 30 2007
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
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
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
!------ 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









Walter Bright <newshound1 digitalmars.com> 