Help for this page

Select Code to Download


  1. or download this
    my %files = (
        dev    => [qw(dev_file1 dev_file2 dev_file3 dev_file4)],
    ...
    );
    
    print $files{dev}[0];
    
  2. or download this
    my @dev = @{ $files{dev} };
    print $dev[0];