Help for this page

Select Code to Download


  1. or download this
    my %h;
    for(qw/foo bar baz quux foo narf bar poit/) {
        $h{$_} = 1;
    }
    
  2. or download this
    my (%h, @a);
    for(qw/foo bar baz quux foo narf bar poit/) {
        push @a, $_ unless exists $h{$_};
        $h{$_} = 1;
    }