Help for this page

Select Code to Download


  1. or download this
    use feature ':5.16';
    use strictures;
    ...
    # Bug ??
    say 'Why does this not print ??' 
        if $main_door->DOES('Closed');
    
  2. or download this
    package Door;
    
    ...
    }
    
    1;
    
  3. or download this
    package Closed;
    
    ...
    }
    
    1;
    
  4. or download this
    package Opened;
    
    ...
    }
    
    1;