The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package # HIDE FROM THE CPAN
    Account;
use Moose;

has 'credit_limit' => (
    is => 'rw',
    isa => 'Int',
    default => 0
);

has 'credit_score' => (
    is => 'ro',
    isa => 'Int',
    default => 0
);

1;