Help for this page

Select Code to Download


  1. or download this
    # If your $key is *not* what we're looking for, remove i
    +t from the hash
       if ( !grep ($key, @keysToKeep) )
    
  2. or download this
      DB<137> 1 ~~ [1,2,3]
     => 1
    ...
    
      DB<140> "2" ~~ [1,2,3]
     => 1
    
  3. or download this
      DB<145> %h=(a=>1,b=>2,c=>3)
     => ("a", 1, "b", 2, "c", 3)
    ...
    
      DB<148> \%h
     => { a => 1 }
    
  4. or download this
      DB<153> %h=(a=>1,b=>2,c=>3)
     => ("a", 1, "b", 2, "c", 3)
    ...
    
      DB<157> \%h2
     => { a => 1, e => undef }