Help for this page

Select Code to Download


  1. or download this
    package A;
    my $self;
    ...
    my $a = bless \do { my $o } => 'A';
    print "About to call via $a\n";
    $a->foo;
    
  2. or download this
    sub called_by {
         return ( caller 1 )[0]->caller;
    }