Help for this page

Select Code to Download


  1. or download this
    package WidgetRole;
    use Moose::Role;
    ...
    with 'WidgetRole';
    
    sub get_widget_type{ "IAmAbstract" }
    
  2. or download this
    package WidgetRole;
    use Moose::Role;
    ...
    sub get_widget_type{ "BasicWidget" }
    
    # throws error and dies