- or download this
open my $input_fh, '<', 'skaters.txt'
or die "Can't read skaters.txt: $!";
- or download this
my @skater_records
= map { chomp; [ split /,/ ] }
grep { /\S/ } <$input_fh>;
- or download this
use strict;
use warnings;
...
Guido Chuffart: 88.2
Jack Creasey: 85.8
Cecilia Cornejo: 85.4