Help for this page

Select Code to Download


  1. or download this
        return if not ... a cheap test...;
        return if not ... a more expensive test..;
        my $foo = ..initialization...;
        ...body of sub routine ...
    
  2. or download this
    return exists $hash{$a}{$key}?$hash{$a}{$key} : undef;
    return $hash{$a}{$key}; # instead of above