Help for this page

Select Code to Download


  1. or download this
    sub not_exposed_reason {
        my ($self, $not_exposed_reason) = @_;
    ...
                ? $not_exposed_reason
                : "No exposed reason";
    }
    
  2. or download this
    sub not_exposed_reason {
        my ($self, $not_exposed_reason) = @_;
    ...
            return "No exposed reason";
        }
    }
    
  3. or download this
    defined(X) ? X : Y
    
  4. or download this
    X // Y