- or download this
my %data;
while (<DATA>) {
next if /mcp/;
...
my ($s, $n) = split;
push @{ $data{$s} }, $n;
}
- or download this
open(rat_event,"RAT_EVENT");
@rat_event = <rat_event>;
- or download this
my %rat_event;
while <RAT_EVENT> {
# Same as above
}