Help for this page

Select Code to Download


  1. or download this
    >perl -le"@a = qw( a b c d ); @b = grep { push(@a,'!') if !$i++; 1 } @
    +a; print @b"
    abcd
    
  2. or download this
    >perl -le"@a = qw( a b c d ); for (@a) { push(@a,'!') if !$i++; push @
    +b, $_ } print @b"
    abcd!