Help for this page

Select Code to Download


  1. or download this
    package FragileDancer
    {
    ...
        with "Fragile";
        with "Dancer";
        ...
    
  2. or download this
    package FragileDancer
    {
        use Role::Tiny::With;
        with 'Fragile', 'Dancer';
        ...
    
  3. or download this
    Due to a method name conflict between roles 'Dancer and Fragile', the 
    +method 'break' must be implemented by 'FragileDancer' at C:\Perl\lib\
    +perl5/Role/Tiny.pm line 183.
    
  4. or download this
    #! perl
    use strict;
    ...
    
    my $fg = FragileDancer->new('Nina');
       $fg->break();
    
  5. or download this
    23:44 >perl 655_SoPW.pl
    Due to a method name conflict between roles 'Dancer and Fragile', the 
    +method 'break' must be implemented by 'FragileDancer' at C:\Perl\lib\
    +perl5/Role/Tiny.pm line 183.
    
    23:44 >