1Data/TreeDumper
2===============
3
4Data::TreeDumper dumps any data structure. Try the examples
5that come with Data::TreeDumper.
6
7Ex:
8my $tree = { ... } ;
9print DumpTree($tree, 'Tree:') ;
10
11#output
12
13Tree:
14|- A [H1]
15|  |- a [H2]
16|  |- bbbbbb = CODE(0x8139fa0) [C3]
17|  |- c123 [C4 -> C3]
18|  `- d [R5]
19|     `- REF(0x8139fb8) [C6 -> C3]
20|- ARRAY [A7]
21|  |- 0 [S8] = elment_1
22|  |- 1 [S9] = element_2
23|  `- 2 [S10] = element_3
24`- C [H11]
25   `- b [H12]
26      `- a [H13]
27         |- a [H14]
28         |- b = CODE(0x81ab10c) [C15]
29         `- c [S16] = 42
30
31INSTALLATION
32
33To install this module type the following:
34
35   perl Makefile.PL
36   make
37   make test
38   make install
39
40COPYRIGHT AND LICENCE
41
42  Copyright (c) 2003-2008 Nadim Ibn Hamouda el Khemir. All rights
43  reserved.  This program is free software; you can redis-
44  tribute it and/or modify it under the same terms as Perl
45  itself.
46
47If you find any value in this module, mail me!  All hints, tips, flammes and wishes
48are welcome at <nadim@khemir.net>.
49
50