Help for this page

Select Code to Download


  1. or download this
    $ perl
    my @a = qw/a b c d e/;
    ...
    printthese( [ @a[0, 2, 4] ]);
    ^D
    a, c, e
    
  2. or download this
    $ perl
    my @a = qw/1 2 3 4 5/;
    ...
    print "\n";
    ^D
    0, 2, 0, 4, 0