The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Pixie::Object;

use strict;

our $VERSION="2.06";

sub new {
  my $proto = shift;
  my $self =  bless {}, $proto;
  $self->init;
  return $self;
}

sub init { $_[0]; }

1;