doc/getstart.dox
changeset 1681 84e43c7ca1e3
parent 1637 9d64d5672b88
child 1713 49d22d34d95f
equal deleted inserted replaced
8:8373f2a4b2f7 9:139b8e93be34
   225 If you have installed LEMON on your system you can paste the
   225 If you have installed LEMON on your system you can paste the
   226 following code segment into a file (you can find it as \c
   226 following code segment into a file (you can find it as \c
   227 demo/hello_lemon.cc in the LEMON package) to have a first working
   227 demo/hello_lemon.cc in the LEMON package) to have a first working
   228 program that uses library LEMON.
   228 program that uses library LEMON.
   229 
   229 
   230 \include hello_lemon.cc
   230 \dontinclude hello_lemon.cc
       
   231 \skip include
       
   232 \until }
   231 
   233 
   232 First let us briefly explain how this program works.
   234 First let us briefly explain how this program works.
   233 
   235 
   234 ListGraph is one of LEMON's graph classes. It is based on linked lists,
   236 ListGraph is one of LEMON's graph classes. It is based on linked lists,
   235 therefore iterating throuh its edges and nodes is fast.
   237 therefore iterating throuh its edges and nodes is fast.