- or download this
my $hashvar = {
emp => {},
...
&HashClean($hashvar);
print Data::Dumper->Dump([$hashvar],[qw (::hashvar)]);
- or download this
$::hashvar = {
'hemp' => {
...
'tay' => [],
'splay' => {}
};
- or download this
sub HashClean {
my ($hashref) = @_;
...
&HashClean($hashref) if $deletes;
return $deletes;
}#sub