Help for this page

Select Code to Download


  1. or download this
    # both branches are very long
    
    ...
    sub sg {
        return COND ? wibble( @_ ) : wobble( @_ );
    }
    
  2. or download this
    # one branch (symbolised here by `return 2`) is much shorter than the 
    +other
    
    ...
        return wibble( @_ ) if COND;
        return 2;
    }