Help for this page

Select Code to Download


  1. or download this
    return $some_condition ? $x : $y;
    
  2. or download this
    if ($some_condition) {
      return $x;
    }
    return $y;
    
  3. or download this
    return 1 if $self->_condition_1_is_true and
                $self->_condition_2_is_true and
                $self->_condition_3_is_true; # etc...
    return;