http://www.perlmonks.org?node_id=1034699


in reply to Re: Why upgrade perl?
in thread Why upgrade perl?

use v5.12;
versus
use strict;
is not much reduced typing ;-)
(I know it gives more than just strict)

Replies are listed 'Best First'.
Re^3: Why upgrade perl?
by tobyink (Canon) on May 22, 2013 at 16:10 UTC

    use v5.12; is less typing than use v5.10; use strict; though.

    package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name