Help for this page

Select Code to Download


  1. or download this
    someFunction() or die "$!";
    
  2. or download this
    someFunction() or return(1);
    
  3. or download this
    my $value;
    someFunction() or $value = 1;
    return($value) if $value;