Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    print join (' ', 'The odd numbers are:',
                     grep 1 - $_ % 2, @a),
          "\n";