in reply to deconstructing String::Iota - not worth one iota

9. The synopsis does does not conform to best practices; especially using a bareword filehandle is not modern perl. Using perlcritic guidelines, I rewrote it like this:
... open my $fh, '<', 'test.txt'; ...
Uhmm... What does best practices say about not checking the return value of an open?