- or download this
@_ > 2 && return $_[0]->SUPER::add(@_[1..$#_]);
- or download this
sub add {
# check if the Big Boss is calling us...
...
die "not a number" unless $value =~ /^\d+$/;
$$self += $value;
}
- or download this
add($duration)
- or download this
add(duration => $duration)
- or download this
return $self->SUPER::add(duration=>$duration);