Help for this page

Select Code to Download


  1. or download this
    my $result = try {
      SomeClass->new
    } catch {
      warn
    };
    
  2. or download this
    my $result;
    try {
    ...
    } catch {
      warn
    };
    
  3. or download this
    sub some_sub {
      my $foo;
    ...
      }
    # ...
    }