Help for this page

Select Code to Download


  1. or download this
    for (...) { 
      print "We've started the loop\n";
    ...
      print "We're about to leave the loop\n";
    }
    print "We've left the loop\n";
    
  2. or download this
    We've started the loop
    We're about to leave the loop
    ...
    We've started the loop
    We're about to leave the loop
    <hang>