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