Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use autodie;
    use List::Util qw(first max maxstr min minstr reduce shuffle sum);
    # etc...
    
  2. or download this
    package Local::Junk;
    
    sub import {
    ...
        autodie->import;
        List::Util->import(qw(first max maxstr min minstr reduce shuffle s
    +um));
    }