Help for this page

Select Code to Download


  1. or download this
    my $foo = bless {}, 'package::name';
    $foo->can('function');
    
  2. or download this
    do { local @ISA;
        my $foo = bless {}, 'package::name';
        $foo->can('function');
    };