Help for this page

Select Code to Download


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