- or download this
for (@Subscription) {
Display_Subs(\%$_);
}
- or download this
for (@Subscription) {
Display_Subs($_);
}
- or download this
sub List_Subscriptions {
my (@Sub_ARRAY) = @{$_[0]};
...
for (@Sub_ARRAY) { print " \t$_ \n"; }
print "\n\n";
}
- or download this
sub List_Subscriptions {
my ($Sub_ARRAY) = @_;
...
for (@$Sub_ARRAY) { print " \t$_ \n"; }
print "\n\n";
}