Help for this page

Select Code to Download


  1. or download this
    package DoesBubba;
    use Moose::Role;
    ...
    sub bubba { ... }
    
    1;
    
  2. or download this
    package Hubba;
    use Moose;
    with 'DoesBubba';
    
    # rest of your class here.