Help for this page

Select Code to Download


  1. or download this
    $ perl -E '                                               
        my @x = qw{a,b,c d,e,f g,h,i};
    ...
    b
    e
    h
    
  2. or download this
    $ perl -E '
        my @x = qw{a,b,c d,e,f g,h,i};
    ...
    b
    e
    h
    
  3. or download this
    my @y = map +(split /,/)[1], @x;