home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / leda / problems / p2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-15  |  163 b   |  16 lines

  1. #include <LEDA/graph.h>
  2.  
  3. declare2(GRAPH,string,string)
  4.  
  5. main()
  6.  
  7.   GRAPH(string,string) G;
  8.  
  9.   G.new_node("hello");
  10.   G.new_node("world");
  11.  
  12.   G.print("G = ");
  13.  
  14. }
  15.