Help for this page

Select Code to Download


  1. or download this
    my $req;
    
    while ($req = ...
    
  2. or download this
    while (my $req = ...
    
  3. or download this
    chomp;
    
  4. or download this
    chomp $req;
    
  5. or download this
    eval {
        # Code which might generate an error
    ...
        # Handles any errors here
        # $@ holds the error message
    }