Help for this page

Select Code to Download


  1. or download this
    if (...) {
       ...
    } else {
       last;
    }
    
  2. or download this
    last unless ...;
    
    ...
    
  3. or download this
    return unless fork ();
    
    for (...) {
       ...
    }