- or download this
#!/usr/bin/perl
use strict;
...
my $sub = $subref->{dispatch}->{$pos};
Dump ($sub); ###!!
}
- or download this
my ($self);
$self = bless( {}, 'Foo' );
...
use strict 'refs';
$self->subb;
};
- or download this
package Foo;
use strict; use warnings;
...
}
1;
- or download this
POS: A
$CODE1 = sub {
...
use strict 'refs';
return;
};