Help for this page

Select Code to Download


  1. or download this
    perl -e '@a = qw(a, b, c);map { print "$_\n"; } @a'
    
  2. or download this
    a,
    b,
    c
    
  3. or download this
    perl -e '@a = qw(a b c);map { print "$_\n"; } @a'
    
  4. or download this
    a
    b
    c