Hashes don't interpolate in strings:
#!perl -w use strict; my %SeqRec; print ("content of hash is %SeqRec\n");
I recommend to use Data::Dumper for debugging contents of variables:
use Data::Dumper; my %SeqRec = (foo => 'bar'); print ("content of hash is " . Dumper \%SeqRec);
In reply to Re^3: Storing data into hashes
by Corion
in thread Storing data into hashes
by rkrish
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |