Help for this page

Select Code to Download


  1. or download this
    sub Foo::isa { die "bla" };
    my $ref = bless {}, 'Foo';
    ...
    else {
        print "An object\n";
    }
    
  2. or download this
    eval { ... }
    if ($@) { ... }
    
  3. or download this
    if (eval {...; 1}){ ... }