in reply to Re: Graphical Hierarchical Tree
in thread Graphical Hierarchical Tree
sub getarticles {
my $IndentString = shift;
my $article = shift;
return unless $Children{$article};
...
}
Granted, not a big deal, but I like it better now, with strictures on.
-- Ricardo
use MacPerl;
- Comment on Re: Re: Graphical Hierarchical Tree