Help for this page

Select Code to Download


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