1 Oct
2001
1 Oct
'01
15:59
* Alexandr Malusek [01 Oct 2001 10:38:36 +0200]: [yes, I know this is off topic]
#include <iostream> using namespace std;
My only comment would be to never ever do this. This pulls everything into the global namespace and simply defeats all that namespaces were meant for. If you must, only do that for selected parts. IMNSHO, one should right away get used to the namespaces and write it as #include <iostream> int main (int argc, char **argv) { std::cout << "Hello World\n"; return 0; } -- Penguins to save the dinosaurs -- Handelsblatt on Linux for S/390