Help for this page

Select Code to Download


  1. or download this
    package Result;
    
    ...
    }
    
    1;
    
  2. or download this
    require Result;
    sub complex_function {
    ...
      }
      return Result->new(1);
    }
    
  3. or download this
    unless (my $r = complex_function())
    {
      print "Error received: $r\n";
    }