Help for this page

Select Code to Download


  1. or download this
    package Xyz ;
    use strict ;
    use warnings ;
    ...
    
    package Xyz::YAML ;
    ...... etc
    
  2. or download this
    use Xyz ;
    Xyz::XML->render() ; # this works
    Class::Trait->apply($my_obj, 'Xyz::XML') ; # problems
    
  3. or download this
    test render XML
    Trait (Xyz::XML) could not be found : Can't locate Xyz/XML.pm ......