Help for this page

Select Code to Download


  1. or download this
        my @array = qw/foo bar baz quux/;
    
        my %hash;
        @hash{@array} = (1) x @array;
    
  2. or download this
        @hash{@array} = ();
    
  3. or download this
        print "foo is there" if exists $hash{foo};