Help for this page

Select Code to Download


  1. or download this
    sub _build_net_income {
      my $self = shift;
      return $self->gross_income - $self->taxes;
    }
    
  2. or download this
    sub _build_net_income {
      my $self  = shift;
    ...
      $taxes = 0 if $taxes < 0;
      return $gross - $taxes;
    }