Help for this page

Select Code to Download


  1. or download this
    package Wibble;
    use Moose;
    ...
          elements => 'list_thingies',
      },
    );
    
  2. or download this
    my $w = Wibble->new( thingies => [ 'this', 'that' ]);
    
    ...
    
    print join(", ",$w->list_thingies())."\n";
    # prints "this, that, another"