Help for this page

Select Code to Download


  1. or download this
    package MyLib;
    use strict; use warnings;
    ...
    }
    
    1;
    
  2. or download this
    use strict; use warnings;
    use MyLib;
    ...
    }
    
    __END__
    
  3. or download this
    ---
    A:
    ...
    B:
        a: 3
        b: 4
    
  4. or download this
    use strict; use warnings;
    use YAML qw/ LoadFile /;
    ...
    }
    
    __END__