Help for this page

Select Code to Download


  1. or download this
    somefunction() if $some_condition;
    
    sub somefunction {
    ...
        return if $condition;
        &some_more_stuff();
    }
    
  2. or download this
    if ($some_condition){
       &some_stuff();
       goto EXIT if $condition;
       &some_more_stuff();
    }
    EXIT: {};