Help for this page

Select Code to Download


  1. or download this
    (my $team, my $loc, my $tool, my $amt) = (split /[,]/)[1,2,3,4];
    
  2. or download this
    my ($team, $loc, $tool, $amt) = (split /[,]/)[0,1,2,3];
    
  3. or download this
    my ($team, $loc, $tool, $amt) = split /[,]/;