- or download this
&{
# code here returns a value,
# that's interpreted as the name
# of the subroutine to call...
}
- or download this
my $subroutine = sub {
# code here defines an anonymous sub
};
$subroutine->( @arguments ); #call sub
- or download this
unless ($newSeriesSth->execute()) {
# error handling
}
- or download this
--
Joost downtime n. The period during which a system
is error-free and immune from user input.