Moo icon indicating copy to clipboard operation
Moo copied to clipboard

Minimalist Object Orientation (with Moose compatibility)

Results 2 Moo issues
Sort by recently updated
recently updated
newest added

Rationale: when `use Moo` comes after `use warnings qw(...)` it will clobber the list and import everything. It's kind of tedious to remember to always `use Moo` before everything else.

With modern perls, it is encouraged to use a "use v5.xx;" declaration, which enables strict and warnings. This makes it less useful for Moo to do so. Always enabling warnings...