Help for this page

Select Code to Download


  1. or download this
    @data_names = <JOE>;
    chomp @data_names;
    # . . .
    
  2. or download this
    for (@data_names) {
        # $_ contains each name in turn
    }
    
  3. or download this
        open my $fh, '<', $_ or die $!;