Skip to content

Instantly share code, notes, and snippets.

@mstratman
Created March 11, 2011 00:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mstratman/865272 to your computer and use it in GitHub Desktop.
Save mstratman/865272 to your computer and use it in GitHub Desktop.
# NOTE: This is simply an example of a legacy array-based object.
# I do not recommend using it.
package Animal3;
use strict;
our $NAME_INDEX = 0;
sub new {
my $class = shift;
my $self = [];
$self->[$NAME_INDEX] = shift;
bless $self, $class;
return $self;
}
sub name {
my $self = shift;
if (@_) { $self->[$NAME_INDEX] = shift }
return $self->[$NAME_INDEX];
}
1;
package Camel;
use Moose;
use MooseX::NonMoose::InsideOut;
extends 'Animal3';
has 'humps' => ( is => 'ro', isa => 'Num' );
sub FOREIGNBUILDARGS {
my $class = shift;
# We expect a hashref with 'name' and 'humps'.
my $args = shift;
# Give Animal3 what it wants: just the name, and nothing else.
return $args->{name};
}
no Moose;
__PACKAGE__->meta->make_immutable;
#!/usr/bin/perl
use Modern::Perl;
use Camel;
my $c = Camel->new({ name => "Samuel Camel", humps => 2 });
say $c->name, " has ", $c->humps, " humps";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment