Help for this page

Select Code to Download


  1. or download this
    my $alphabetised = "1";                # Sets $alphabetised to "1"
    
    ...
                                           # TRUE before we even begin
                                           # Thus, never executed
    };
    
  2. or download this
    until ($alphabetised == "1"){          # Checks instead of sets
    until ($alphabetised eq "1"){          # Checks instead of sets
    while ($alphabetised eq "1"){          # while() instead of until()
    my $alphabetised = "0";                # Initialize differently