Help for this page

Select Code to Download


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