- or download this
package Foo;
...
# module for this.
}
}
- or download this
Foo::->this; # OK: this
Foo::->that; # OK: that
Foo::->these; # Failure: these
- or download this
package Foo::Bar;
use base 'Foo';
...
print "Failure: $m";
}
}
- or download this
Foo::Bar::->hah; # OK: hah
Foo::Bar::->heh; # OK: heh
Foo::Bar::->hoh; # Failure: hoh
- or download this
Foo::Bar::->this; # Failure: this
Foo::Bar::->that; # Failure: that
- or download this
package Foo::Bar;
use base 'Foo';
...
}
}
}
- or download this
{
package A;
...
}
}
}
- or download this
A::->xism; # OK: A::xism
B::->yism; # OK: B::yism
- or download this
package AB;
use base 'A', 'B';
- or download this
AB::->xism; # OK: AB::xism
AB::->yism; # Failure: AB::yism