in reply to Re^5: Why is this auto-quoted? (-(-foo))
in thread Why is this auto-quoted?

This also works:

$perl -wle " print - -foo " +foo

The space between the two minus signs is significant; otherwise Perl thinks you're trying to decrement a constant.

Also:

$perl -wle " print -+-foo " +foo $perl -wle " print +-+-foo " +foo $perl -wle " print -+-+-foo " -foo $perl -wle " print +-+-+-foo " -foo $perl -wle " print -+-+-+-foo " +foo $perl -wle " print +-+-+-+-foo " +foo

...etc

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