Help for this page

Select Code to Download


  1. or download this
            my @arr = (1..10);
    
    ...
            ;
            print "ok";
            no Acme::BottomsUp;
    
  2. or download this
            my @arr = (1..10);
    
    ...
                 grep { $_ % 2 }  # then get the odd ones
                 @arr             # first, start with numbers
            ;
    
  3. or download this
    package Acme::BottomsUp;
    use warnings;
    ...
            @{ $doc->find('PPI::Statement') };
    };
    1;