Help for this page
use strict; use warnings; my @list = qw(A B C); ... @hash{@list} = (); @new_list = keys %hash; print "Keys are @new_list.\n";