Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    open(my $fh,">$file") or die $!;
    print $fh Dumper(\%uniques);
    close $fh;
    
  2. or download this
    sub iter { 
      my $href = shift; 
      my $level = shift; 
    ...
    } 
    
    iter(\%unique, 0);