- or download this
my ( $key, %data );
while ( <FH> ) {
...
$data{ $key } .= $_;
}
}
- or download this
my ( $key, %data );
while ( <FH> ) {
...
push @{ $data{ $key } }, $_;
}
}
- or download this
my ( $key, @data );
while ( <FH> ) {
...
push @{ $data[ -1 ] }, $_;
}
}
- or download this
my ( $key, @data );
while ( <FH> ) {
...
$data[ -1 ] .= $_;
}
}