Help for this page

Select Code to Download


  1. or download this
    sub current_balance {
      my $self = shift;
    ...
      }
      return $self->{current_balance};
    }
    
  2. or download this
    has current_balance => (is => 'rw', isa => 'Num');
    
  3. or download this
    package DebuggingDB;
    use Moose;
    ...
    {
      before $method => sub { warn "$method was called" };
    }
    
  4. or download this
    package DebuggingDB;
    use Moose::Role;
    ...
    {
      before $method => sub { warn "$method was called" };
    }
    
  5. or download this
    use Moose::Util qw/apply_all_roles/;
    apply_all_roles('DB', 'DebuggingDB') if $ENV{DEBUG};
    
  6. or download this
    my $accounts  = DB->new(...);
    my $marketing = DB->new(...);
    
    use Moose::Util qw/apply_all_roles/;
    apply_all_roles($marketing, 'DebuggingDB') if $ENV{DEBUG};