Help for this page

Select Code to Download


  1. or download this
    my @atts = $h->meta->get_meta_instance->get_all_slots;
    
  2. or download this
    package Hubba;
    use Moose;
    foreach my $name ( 'a' .. 'z' ) {
        has $name => ( is => 'rw' );
    }