- or download this
package snafu;
...
return FAILURE_CODE;
}
}
- or download this
unless ( $fsck->foo(\$variable) == SUCCESS_CODE ) {
die "That was quite grim";
}
- or download this
package snafu;
sub foo {
...
return FAILURE_CODE;
}
}
- or download this
unless ( $fsck->foo($variable) ) {
die "A terrible way to go";
}