Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    
    map { print( ( $_ % 2 ? @odd : @even ), "+$_" ) } @numbers;
    map { push( ( $_ % 2 ? @odd : @even ), "+$_" ) } @numbers;
    
  2. or download this
    4 10 +6
    1 5 3 +7
    4 10 +8
    1 5 3 +9
    Not an ARRAY reference at ./push_fail.pl line 13.