Help for this page

Select Code to Download


  1. or download this
    grep { print } @array;
    
  2. or download this
    use List::MoreUtils qw<first>;
    first { not print } @array;
    
  3. or download this
    print shift @array while @array;
    
  4. or download this
    my @r;@r = reverse @array and do { print pop @r while @r };
    # Now I'm just being silly!