in reply to Re^2: How to make a hash to evaluate columns between large datasets
in thread How to make a hash to evaluate columns between large datasets
often you want to store a hash reference in a scalar to avoid referring to the entire hash, e.g. :-my %hashname = (); # init empty hash $hashname{key1} = "value1"; $hashname{key2} = { x => 'y' }; # nests an anonymous hash as the value + for key2
hope this helpsmy $href = \%hash;
|
---|