Help for this page

Select Code to Download


  1. or download this
    class Hamper {
        has $.name = 'Christmas Basket';
    ...
    
    say "Name: " ~ $hamper.name;
    say "Items: " ~ $hamper.items;
    
  2. or download this
    my $hamper = Hamper.new( items => ('Fish', 'Canoe') );
    
  3. or download this
      method TWEAK(){
          @!items = @item_defaults unless grep {$_}, @!items;
      }