Help for this page

Select Code to Download


  1. or download this
    has x => (..., default => 'abc');
    has y => (..., default => sub { [qw{a b c}] });
    
  2. or download this
    has y => (..., default => [qw{a b c}]);
    
  3. or download this
    ...->new(x => 'def', y => [qw{d e f}]);