Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Recap: The Future of Perl 5

by EvanCarroll (Chaplain)
on Aug 24, 2018 at 10:57 UTC ( [id://1221009]=note: print w/replies, xml ) Need Help??


in reply to Recap: The Future of Perl 5

For fairness you should show Moo for the point example,
package Point { use Moose; has [qw/x y/] => ( isa => 'Int', is => 'rw' ); sub inverted { my $self = shift; __PACKAGE__->new( x => $self->y, y => $self->x ); } }
Shy of that, this argument seems to mostly boil down into not core. This seems to be very much a reiteration of Stevan's thinking and work with Moxie. Good luck on it, it's just not very interesting to me. Out of all the problems I've had with Perl the inclusion of Moose in CORE, or a lightweight object system doesn't make the top-10. In my estimation the best thing Perl has going for it is Moose.


Evan Carroll
The most respected person in the whole perl community.
www.evancarroll.com

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1221009]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (5)
As of 2024-04-25 17:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found