|
|
|
|
|
by ksherlock
1381 days ago
|
|
Please don't blame bare word file handles on "C heritage" -- Some of the improvements were needed because in places Perl’s Unix/C heritage shows through a little more than we’d like it to in the 21st century. One good example of this is bareword filehandles. You’re probably used Perl code to open a file looking like this: open FH, 'filename.dat' or die; |
|
Which then inspired the bad idea of expanding on that?