- or download this
use strict;
use warnings;
...
}
$hrec{'Names'} = @names;
$hrec{'Comments'} = @comments;
- or download this
# $hrec{'Names'} = @names;
# $hrec{'Comments'} = @comments;
$hrec{'Comments'} = \@names;
$hrec{'Names'} = \@comments;
- or download this
$hrec{'Names'}->[0]; ## Isha
$hrec{'Comment'}->[0]; ## Hello!! ;
- or download this
my %hrec;
while (<DATA>){
...
$comment =~ s/"//g;
$hrec{$name} = $comment;
}