in reply to Why does Modern::Perl hate CGI.pm || my simple form?

You would also do well to take heed of the advice from chromatic himself (and others) in your previous thread that points out that you're using an outdated and perhaps borked version of Modern::Perl.

And how do you square the code you show, use Modern::Perl 2011, with your assertion that you've updated?

Replies are listed 'Best First'.
Re^2: Why does Modern::Perl hate CGI.pm || my simple form?
by taint (Chaplain) on Nov 06, 2013 at 04:40 UTC
    Greetings ww!
    Indeed. I did. As noted in the thread you mentioned; I updated to the current version of M::P. So things are (should) go as expected. :)

    Best wishes.

    --Chris out...

    #!/usr/bin/perl -Tw
    use perl::always;
    my $perl_version = (5.12.5);
    print $perl_version;
        Greetings ww.
        use Modern::Perl 2011; was simply a "leftover" from my first attempt to investigate the (ad|dis)vantages (sorry, I think that last bit of formatting might be illegal) of using Modern::Perl. Which lead to the thread you mentioned in your previous post. It works without error now, as I mentioned later in that same thread, because I upgraded to the newest version. The "2011" bit specifically, as I understand it, refers to that which was available in Perl 5 as of 2011.
        I hope I've addressed your question adequately. :)

        --Chris out...

        #!/usr/bin/perl -Tw
        use perl::always;
        my $perl_version = (5.12.5);
        print $perl_version;