I have been hearing a lot about this "Modern Perl." Can anyone explain what it is?
One of the things I heard was the new open syntax:
open my $FH, '<', $filename
and not
open FH, "<$filename";
What else is in Modern Perl?
Thanks, Boda Cydo.