Help for this page

Select Code to Download


  1. or download this
      # normal mode, @ISA = qw(Gatherer::Blue)
      use StoneGatherer;
    
  2. or download this
      # red mode, @ISA = qw(Gatherer::Red)
      use StoneGatherer qw(red);
    
  3. or download this
      use Test::More tests => 42;
    
  4. or download this
      package Item;
    
      sub import {
        push @{caller().'::ISA'}, __PACKAGE__;
      }