Help for this page

Select Code to Download


  1. or download this
    my $next = hash_walker(\%data);
    while (my @row = $next->()) {
    ...
            return @row;
        };
    }
    
  2. or download this
    output_hash(\%data);
    
    ...
            print join(',', @row, $k, $v), "\n";
        }
    }