Help for this page

Select Code to Download


  1. or download this
    my $abc_this_01 = "C:/Stuff/abc_this_01.csv";
    my $def_this_01 = "C:/Stuff/def_this_01.csv";
    ...
    my $mno_that_01 = "C:/Stuff/mno_that_01.csv";
    
    # etc.
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $comp = $_;
    our ${$comp.'_this_01'} = "C:/Stuff/${_}_this_01.csv";
    }