Help for this page

Select Code to Download


  1. or download this
    $ perl -wE 'my @ary = qw{a b}; push @ary, "foo" unless grep { "foo" } 
    +@ary; say "@ary"'
    a b
    
  2. or download this
    $ perl -wE 'my @ary = qw{a b}; push @ary, "foo" unless grep { "0" } @a
    +ry; say "@ary"'
    a b foo