Help for this page

Select Code to Download


  1. or download this
    has 'foo';
    
  2. or download this
    package Base;
    use Moose;
    ...
    package main;
    Base->new->foo;    # "Base"
    Child->new->foo;   # "Base" or "Child"?