Help for this page

Select Code to Download


  1. or download this
    perl -e 'for $i (1..9){$x = $i, next if $i == 5;print $i};END{print "\
    +n$x\n"}'
    Output:
    12346789
    5
    
  2. or download this
    perl -e 'for $i (1..9){print "Next", next if $i == 5;print $i}'
    Output:
    12346789