c++ - new to digital mars
- john (3/3) Aug 12 2007 i just downloaded the compiler can someone talk me through the
- Walter Bright (2/5) Aug 12 2007 Unzip the compiler; the readme is in the \dm directory.
- =?UTF-8?B?RGllZ28gU8OhbmNoZXo=?= (9/12) Aug 30 2007 Create file: hello.cc
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 helpUnzip 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 helpCreate 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