- or download this
sub xyz {
my ($tgs) = @_;
...
END_OF_SUB_XYZ
;
}
- or download this
sub xyz {
my ($tgs) = @_;
my $hash_name = "Test_Hash_$tgs";
my %{$hash_name};
}
- or download this
sub xyz {
my ($tgs) = @_;
my %Test_hash{$tgs} = {};
# use $Test_hash{$tgs}{foo}, etc.
}