diff -r 6d94de269ab1 -r 8c14aa8f27a2 demo/hello_lemon.cc --- a/demo/hello_lemon.cc Wed Jun 29 19:44:30 2005 +0000 +++ b/demo/hello_lemon.cc Thu Jun 30 16:13:30 2005 +0000 @@ -17,6 +17,11 @@ for (NodeIt j(g); j!=INVALID; ++j) if (i != j) g.addEdge(i, j); + std::cout << "Hello World!" << std::endl; + std::cout << std::endl; + std::cout << "This is library LEMON here! We have a graph!" << std::endl; + std::cout << std::endl; + std::cout << "Nodes:"; for (NodeIt i(g); i!=INVALID; ++i) std::cout << " " << g.id(i);