Help for this page

Select Code to Download


  1. or download this
    while (cond1) {
      if (cond2) {
    ...
        last;
      }
    }
    
  2. or download this
    while (cond1) {
      last unless (cond2);
    ...
        something
      }
    }