http://www.perlmonks.org?node_id=939687


in reply to How to improve my code? main concern:array as hash element

You can store the reference to an array in your hash:
%gp = ( Gi => [qw[Galpha-i1 Galpha-i2 Galpha-i3]], ); print $gp{Gi}[1];
See also perlref.