Help for this page

Select Code to Download


  1. or download this
    foreach (1..10) {
        next if ($_ == 9);
        print("$_  ");
    }
    
  2. or download this
    foreach (1..10) {
        last if ($_ == 9);
        print("$_  ");
    }
    
  3. or download this
    foreach (1..10) {
        print("$_  ");
    ...
            redo;
        }
    }