Help for this page

Select Code to Download


  1. or download this
    &{ 
       # code here returns a value,
       # that's interpreted as the name
       # of the subroutine to call...
     }
    
  2. or download this
    my $subroutine = sub {
         # code here defines an anonymous sub
    };
    
    $subroutine->( @arguments ); #call sub
    
  3. or download this
    unless ($newSeriesSth->execute()) {
       # error handling
    }
    
  4. or download this
    -- 
    Joost       downtime n. The period during which a system
                is error-free and immune from user input.