Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    my %SeqRec = (foo => 'bar');
    
    print ("content of hash is " . Dumper \%SeqRec);
    
  2. or download this
    content of hash is $VAR1 = {
              'foo' => 'bar'
            };