- or download this
use feature qw(state); # Perl 5.10+
use Type::Params qw(compile);
...
return $sum;
}
- or download this
use feature qw(state); # Perl 5.10+
use Type::Params qw(compile);
...
Num->assert_return( $sum );
}
- or download this
use feature qw(state); # Perl 5.10+
use Type::Params qw(compile);
...
#
ArrayRef->of(ArrayRef)->assert_valid( \@z );
}