Help for this page

Select Code to Download


  1. or download this
    sub foo {
        #...
    ...
    
    my $error = foo();
    print $error->{errno}, $error->{errmess};
    
  2. or download this
    sub foo {
        #...
    ...
    }
    
    my ( $errno, $errmess ) = foo();
    
  3. or download this
    if ($var = 0) {
    
  4. or download this
    use strict;
    use warnings;