Help for this page

Select Code to Download


  1. or download this
    #!perl -w
    use strict;
    
    my %SeqRec;
    print ("content of hash is %SeqRec\n");
    
  2. or download this
    use Data::Dumper;
    my %SeqRec = (foo => 'bar');
    
    print ("content of hash is " . Dumper \%SeqRec);