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


in reply to Re^4: regular expression function: grep, split, substr OR NO need?
in thread regular expression function: grep, split, substr OR NO need?

Some modules provide an OO interface (e.g., LWP::UserAgent). Others export functions for their caller to use (e.g. List::Util). Others do neither and instead affect the behavior of Perl (e.g. strict).

use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name