Help for this page
my @titles = ...; if (@titles == 1) { ... $BIGLIST{$title[0]}{$titles[1]} = [ @RESTOFFIELDS ]; } ...etc.
my @titles = ...; my $ref = \%BIGLIST; ... $ref = \($ref->{$title}); } $ref->{$title[0]} = [ @RESTOFFIELDS ];