Subject: | No HOW TO section in documentation |
The documentation, as written now, makes the assumption the reader is savvy leaving the unsavvy readers behind. A HOW TO section would help bridge the gap.
I have a .csv file with the headings on the first line of the file. Also several fields within the file are spread across multiple lines.
Under HOW TO, it would be nice to see:
use strict;
use warnings;
use Text::CSV;
use Data::Dumper;
open(my $file,'<','contacts.csv') or die $!;
... # what goes here?
print Dumper($array_of_hashes_ref) # or $hash_of_hashes_ref