- or download this
# Use Text::CSV_XS if it's available or the
# slower Pure Perl implementation otherwise.
...
...
my $csv_reader = Text::CSV->new();
...
- or download this
>perl -e"use Text::CSV_XS"
- or download this
use Text::CSV_XS;
...
my $csv_reader = Text::CSV_XS->new();
...